:root {
    --primary-blue: #2d5f7f;
    --light-blue: #7fb8d4;
    --sage-blue: #b8d5e5;
    --cream: #f5f5f0;
    --sand: #e8dcc4;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Karla', sans-serif;
    color: var(--text-dark);
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* About Navbar */
.about-navbar {
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.about-navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    padding: 15px 0;
}

.about-navbar-brand {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: white !important;
    transition: color 0.3s ease;
}

.about-navbar.scrolled .about-navbar-brand {
    color: var(--primary-blue) !important;
}

.about-nav-link {
    color: white !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-navbar.scrolled .about-nav-link {
    color: var(--text-dark) !important;
}

.about-navbar-icons a {
    color: white;
    transition: color 0.3s ease;
}

.about-navbar.scrolled .about-navbar-icons a {
    color: var(--text-dark);
}

.about-form-control {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.about-form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.about-navbar.scrolled .about-form-control {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
}

.about-navbar.scrolled .about-form-control::placeholder {
    color: #999;
}

/* About Banner */
.about-banner {
    position: relative;
    background: linear-gradient(135deg, #1a4d5f 0%, #2d6f8a 25%, #4a8fa8 50%, #2d6f8a 75%, #1a4d5f 100%);
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: aboutWave 15s ease-in-out infinite;
}

@keyframes aboutWave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-20px) translateY(-10px);
    }
}

.about-banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-banner-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.about-banner-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.about-banner-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: white;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--light-blue);
}

.about-story-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #666;
    margin-bottom: 25px;
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 500px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Values Section */
.about-values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.about-value-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.about-value-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* About Team Section */
.about-team-section {
    padding: 100px 0;
    background: white;
}

.about-team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.about-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-team-image {
    height: 300px;
    background: linear-gradient(135deg, var(--cream), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-team-info {
    padding: 30px;
    text-align: center;
}

.about-team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.about-team-position {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.about-team-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #888;
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    text-align: center;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-btn-cta {
    background: white;
    color: var(--primary-blue);
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.about-btn-cta:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary-blue);
}

/* About Footer */
.about-footer {
    background: linear-gradient(135deg, #1a4d5f 0%, #2d6f8a 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.about-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), #7fb8d4, var(--light-blue));
}

.about-footer-brand {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
}

.about-footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.about-social-link:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    color: white;
}

.about-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .about-banner-title {
        font-size: 2.5rem;
    }

    .about-banner-subtitle {
        font-size: 1.2rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-story-image {
        height: 300px;
        margin-bottom: 30px;
    }
        }
