.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.about-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.about-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 20px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    text-align: center;
    padding: 50px 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.member-info {
    padding: 0;
}

.member-info h3 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: rgba(26, 26, 26, 0.9);
}

.member-info .role {
    display: block;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    color: rgb(74, 115, 111);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info p {
    font-family: var(--font-primary);
    color: rgba(0, 0, 0, 0.68);
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: rgb(74, 115, 111);
    color: white;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.testimonial-content i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.testimonial-content blockquote {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    margin: 0 0 25px;
    font-weight: var(--font-weight-light);
}

.testimonial-content cite {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.75rem;
    color: rgb(74, 115, 111);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: rgba(26, 26, 26, 0.9);
}

.contact-item p {
    font-family: var(--font-primary);
    color: rgba(0, 0, 0, 0.68);
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item a {
    color: rgb(74, 115, 111);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: var(--font-weight-medium);
}

.contact-item a:hover {
    color: rgb(61, 153, 145);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: rgba(26, 26, 26, 0.9);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-family: var(--font-primary);
    color: rgba(0, 0, 0, 0.68);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(74, 115, 111, 0.1);
    color: rgb(74, 115, 111);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        min-height: 400px;
    }

    .about-hero .hero-content {
        padding: 120px 20px;
    }

    .team-photo {
        margin: 0 20px 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member,
    .contact-item {
        padding: 25px;
    }

    .testimonial-content {
        padding: 0 25px;
    }

    .testimonial-content blockquote {
        font-size: 1.25rem;
    }

    .section-header {
        margin-bottom: 30px;
    }
}

/* Print Styles */
@media print {
    .about-hero {
        height: auto;
        min-height: auto;
    }

    .about-hero .hero-image::after {
        display: none;
    }

    .team-member,
    .contact-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 