.baro-value-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    background-color: #0099ff;
    padding: 40px;
    font-family: 'Noto Sans KR', sans-serif;
}

.baro-value-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

.baro-value-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.baro-value-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.baro-value-description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.baro-value-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.baro-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.baro-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.baro-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.baro-value-quote-button {
    background-color: #ffffff;
    color: #0099ff;
}

.baro-value-call-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.baro-icon {
    margin-right: 10px;
}

.baro-value-quote-button .baro-icon path {
    stroke: #0099ff;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .baro-value-title {
        font-size: 28px;
    }
    
    .baro-value-subtitle, .baro-value-description {
        font-size: 16px;
    }
    
    .baro-value-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .baro-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .baro-value-title {
        font-size: 24px;
    }
    
    .baro-value-subtitle, .baro-value-description {
        font-size: 14px;
    }
    
    .baro-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}