﻿.about-hero {
    background: linear-gradient(135deg, #0174c8 0%, #23815f 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -64px;
    padding-top: 64px;
}

.about-hero-overlay {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.about-hero-title {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.about-section-title {
    font-weight: 700;
}

.about-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    max-height: 350px;
    border-radius: 16px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.about-value-card {
    border-radius: 16px !important;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(1, 116, 200, 0.2) !important;
}

@media (max-width: 800px) {
    .about-hero {
        min-height: 220px;
    }

    .about-hero-overlay {
        min-height: 220px;
    }

    .about-hero-title {
        font-size: 1.4rem !important;
    }

    .about-hero-subtitle {
        font-size: 0.9rem !important;
    }

    .about-image {
        max-height: 200px;
    }
}
