/* ===============================================
   ECOFERT GHANA - ABOUT PAGE STYLING
   Modern, Professional Design with Green, Yellow, White Theme
   =============================================== */

/* CSS Variables (inheriting from main.css) */
:root {
    /* Primary Colors */
    --primary-green: #2e7d32;
    --primary-green-dark: #1b5e20;
    --primary-green-light: #4caf50;
    --secondary-yellow: #ffeb3b;
    --secondary-yellow-dark: #f57f17;
    --secondary-yellow-light: #fff176;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e8f5e8;
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-medium: #424242;
    --text-light: #666666;
    --border-light: #e0e0e0;
    
    /* Gradients */
    --green-gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    --yellow-gradient: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--secondary-yellow-light) 100%);
    --hero-gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 50%, var(--secondary-yellow) 100%);
    --card-gradient: linear-gradient(145deg, var(--pure-white) 0%, var(--light-gray) 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(46, 125, 50, 0.1);
    --shadow-medium: 0 4px 20px rgba(46, 125, 50, 0.15);
    --shadow-heavy: 0 8px 30px rgba(46, 125, 50, 0.2);
    --shadow-card: 0 6px 25px rgba(46, 125, 50, 0.12);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* ===============================================
   ABOUT PAGE SPECIFIC STYLES
   =============================================== */

/* Main Layout */
body {
    background: var(--pure-white);
    line-height: 1.7;
}

/* Section Dividers */
.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    margin: 4rem 0;
    opacity: 0.3;
}

/* ===============================================
   ABOUT HERO SECTION
   =============================================== */

#about-hero {
    background: var(--hero-gradient);
    padding: 8rem 0 6rem;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

#about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grain)"/></svg>');
    opacity: 0.4;
}

#about-hero h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

#about-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* ===============================================
   VISION & MISSION SECTION
   =============================================== */

#vision-mission {
    padding: 6rem 0;
    background: var(--light-gray);
}

#vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 20px;
}

.vision, .mission {
    background: var(--card-gradient);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.vision::before, .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--green-gradient);
}

.vision:hover, .mission:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.vision .icon, .mission .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    border-radius: 50%;
    animation: bounce 2s infinite;
    border: 3px solid var(--primary-green);
}

.vision .icon i, .mission .icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    display: block;
}

.vision h2, .mission h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.vision p, .mission p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: left;
}

/* ===============================================
   CORE VALUES SECTION
   =============================================== */

#core-values {
    padding: 6rem 0;
    background: var(--pure-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: var(--card-gradient);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out;
}

.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }
.value-card:nth-child(5) { animation-delay: 0.4s; }
.value-card:nth-child(6) { animation-delay: 0.5s; }

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow-gradient);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.value-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.value-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-img {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-gradient);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    border-radius: 20px;
    padding: 2rem;
}

.value-card:hover .value-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.overlay-content h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* ===============================================
   TEAM SECTION
   =============================================== */

#team {
    padding: 6rem 0;
    background: var(--light-gray);
}

#team h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.team-photos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.team-photo-wrapper {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.team-photo-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.team-photo-caption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.team-members-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background: var(--card-gradient);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out;
}

.team-member:nth-child(2) { animation-delay: 0.1s; }
.team-member:nth-child(3) { animation-delay: 0.2s; }
.team-member:nth-child(4) { animation-delay: 0.3s; }

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-green);
    transition: var(--transition-smooth);
}

.team-member:hover .team-member-img {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===============================================
   HISTORY SECTION
   =============================================== */

#history {
    padding: 6rem 0;
    background: var(--pure-white);
}

#history h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-text {
    animation: slideInLeft 0.8s ease-out;
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: justify;
}

.history-milestones {
    animation: slideInRight 0.8s ease-out;
}

.milestone {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-gradient);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-green);
}

.milestone:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.milestone-year {
    background: var(--green-gradient);
    color: var(--pure-white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    margin-right: 1.5rem;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
}

.milestone-content h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.milestone-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ===============================================
   UNIQUE SELLING POINTS SECTION
   =============================================== */

#unique-selling-points {
    padding: 6rem 0;
    background: var(--light-gray);
}

#unique-selling-points h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.usp-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.usp-card {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out;
}

.usp-card:nth-child(2) { animation-delay: 0.1s; }
.usp-card:nth-child(3) { animation-delay: 0.2s; }
.usp-card:nth-child(4) { animation-delay: 0.3s; }

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-green);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.usp-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.usp-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.usp-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.usp-cta {
    text-align: center;
    background: var(--green-gradient);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 25px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.usp-cta h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.usp-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-yellow);
    color: var(--primary-green);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--secondary-yellow-dark);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===============================================
   MILESTONES SECTION
   =============================================== */

#milestones {
    padding: 6rem 0;
    background: var(--pure-white);
}

#milestones h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.milestones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.milestone-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.milestone-highlight.reverse {
    direction: rtl;
}

.milestone-highlight.reverse > * {
    direction: ltr;
}

.milestone-details {
    background: var(--card-gradient);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.milestone-details h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.milestone-details p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.milestone-date {
    display: inline-block;
    background: var(--yellow-gradient);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
}

.milestone-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.prize-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.prize-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.showcase-main-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.showcase-main-img img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.showcase-thumbnails {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
}

.thumbnail img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    cursor: pointer;
    opacity: 0.7;
}

.thumbnail img:hover,
.thumbnail img.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.milestone-video {
    text-align: center;
    margin: 4rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.milestone-video h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.video-container video {
    width: 100%;
    height: auto;
}

.video-caption {
    margin-top: 1rem;
    color: var(--text-medium);
    font-style: italic;
}

.milestone-gallery {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.milestone-gallery h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-item p {
    margin-top: 1rem;
    color: var(--text-medium);
    font-style: italic;
    font-size: 0.95rem;
}

.milestone-cta {
    text-align: center;
    background: var(--green-gradient);
    color: var(--pure-white);
    padding: 3rem;
    border-radius: 25px;
    max-width: 800px;
    margin: 4rem auto 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.milestone-cta h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.milestone-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===============================================
   ANIMATIONS
   =============================================== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
    /* About Hero Mobile */
    #about-hero h1 {
        font-size: 2.5rem;
    }
    
    #about-hero p {
        font-size: 1.1rem;
    }
    
    /* Vision & Mission Mobile */
    #vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 20px;
    }
    
    .vision, .mission {
        padding: 2rem;
    }
    
    .vision h2, .mission h2 {
        font-size: 1.5rem;
    }
    
    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    /* Team Section Mobile */
    .team-photos-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-members-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* History Section Mobile */
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .milestone {
        flex-direction: column;
        text-align: center;
    }
    
    .milestone-year {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* USP Section Mobile */
    .usp-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .usp-card {
        padding: 2rem;
    }
    
    /* Milestones Section Mobile */
    .milestone-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .milestone-highlight.reverse {
        direction: ltr;
    }
    
    .milestone-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showcase-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #about-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2,
    #team h2,
    #history h2,
    #unique-selling-points h2,
    #milestones h2 {
        font-size: 2rem;
    }
    
    .vision, .mission {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .milestone-details {
        padding: 1.5rem;
    }
    
    .usp-card {
        padding: 1.5rem;
    }
    
    .usp-cta,
    .milestone-cta {
        padding: 2rem;
    }
}

/* ===============================================
   ACCESSIBILITY IMPROVEMENTS
   =============================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
a:focus,
input:focus,
.thumbnail img:focus {
    outline: 2px solid var(--secondary-yellow);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #1b5e20;
        --secondary-yellow: #ffc107;
        --text-dark: #000000;
        --text-medium: #333333;
    }
}

/* Print styles */
@media print {
    #about-hero {
        background: none !important;
        color: #000 !important;
    }
    
    .value-overlay,
    .usp-cta,
    .milestone-cta {
        background: none !important;
        color: #000 !important;
    }
    
    .milestone-highlight {
        grid-template-columns: 1fr;
    }
}
