        /* Header Styles */
    header {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        max-width: 1400px;
        margin: 0 auto;
    }


    /* Page Banner */
    .page-banner {
             background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 100px 0;
            color: white;
            text-align: center;
        }

    .page-banner h1 {
        font-size: 48px;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease;
        font-family: 'Playfair Display', serif;
    }

    .page-banner p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.95;
        animation: fadeInUp 0.8s ease 0.2s both;
    }

    /* Our Story Section */
    .story-section {
        padding: 80px 0;
        background: white;
    }

    .story-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .story-content {
        padding-right: 30px;
    }

    .story-tagline {
        color: #D4A853;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .story-content h2 {
        font-size: 42px;
        color: #2E5C3E;
        margin-bottom: 30px;
        font-family: 'Playfair Display', serif;
        line-height: 1.2;
    }

    .story-content p {
        color: #666;
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.9;
    }

    .story-content p:first-of-type {
        font-size: 18px;
        color: #2E5C3E;
        font-weight: 500;
        border-left: 4px solid #D4A853;
        padding-left: 20px;
    }

    .story-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    }

    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .story-image:hover img {
        transform: scale(1.05);
    }

    .story-image::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        z-index: 1;
        pointer-events: none;
        border-radius: 15px;
    }

    .founded-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: #D4A853;
        color: #2E5C3E;
        padding: 15px 25px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 2;
    }

    /* Why Pakistani Rice Section */
    .why-section {
        padding: 80px 0;
        background: #f8f9fa;
        position: relative;
        overflow: hidden;
    }

    .why-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: rgba(46, 92, 62, 0.05);
        border-radius: 50%;
    }

    .why-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(212, 168, 83, 0.05);
        border-radius: 50%;
    }

    .why-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .why-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        position: relative;
    }

    .why-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .map-overlay {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        background: rgba(255,255,255,0.95);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .map-overlay h4 {
        color: #2E5C3E;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .map-overlay p {
        color: #666;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .map-overlay i {
        color: #D4A853;
        font-size: 20px;
    }

    .why-content h2 {
        font-size: 42px;
        color: #2E5C3E;
        margin-bottom: 30px;
        font-family: 'Playfair Display', serif;
    }

    .why-content p {
        color: #666;
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.9;
    }

    .region-highlight {
        background: white;
        padding: 25px;
        border-radius: 15px;
        margin-top: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-left: 4px solid #D4A853;
    }

    .region-highlight h4 {
        color: #2E5C3E;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .region-highlight p {
        margin-bottom: 0;
        font-style: italic;
    }

    /* Milestones Section */
    .milestones-section {
        padding: 80px 0;
        background: white;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 42px;
        color: #2E5C3E;
        margin-bottom: 15px;
        font-family: 'Playfair Display', serif;
    }

    .section-header p {
        color: #666;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
    }

    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom, #D4A853, #2E5C3E, #D4A853);
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 50px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-dot {
        position: absolute;
        left: 50%;
        top: 0;
        width: 60px;
        height: 60px;
        background: #2E5C3E;
        border: 4px solid #D4A853;
        border-radius: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        z-index: 2;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .timeline-content {
        width: calc(50% - 60px);
        padding: 30px;
        /* background: #f8f9fa; */
        background: #F0F1F2;
        border-radius: 15px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 20px;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 15px solid #f8f9fa;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        content: '';
        position: absolute;
        right: -15px;
        top: 20px;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #f8f9fa;
    }

    .timeline-year {
        display: inline-block;
        background: #D4A853;
        color: #2E5C3E;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .timeline-content h3 {
        color: #2E5C3E;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .timeline-content p {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Stats Section */
    .stats-section {
        padding: 60px 0;
        background: linear-gradient(135deg, #2E5C3E 0%, #1A3A2A 100%);
        color: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #D4A853;
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }

    .stat-label {
        font-size: 16px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Commitment Section */
    .commitment-section {
        padding: 80px 0;
        background: white;
    }

    .commitment-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .commitment-content h2 {
        font-size: 42px;
        color: #2E5C3E;
        margin-bottom: 30px;
        font-family: 'Playfair Display', serif;
    }

    .commitment-content p {
        color: #666;
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 30px;
        font-style: italic;
        border-left: 4px solid #D4A853;
        padding-left: 20px;
    }

    .commitment-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .commitment-feature {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2E5C3E;
        font-size: 20px;
        border: 2px solid #D4A853;
    }

    .feature-text h4 {
        color: #2E5C3E;
        font-size: 16px;
        margin-bottom: 3px;
    }

    .feature-text p {
        color: #666;
        font-size: 14px;
        margin: 0;
        border: none;
        padding: 0;
        font-style: normal;
    }

    .commitment-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        position: relative;
    }

    .commitment-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .commitment-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(46, 92, 62, 0.2), rgba(212, 168, 83, 0.2));
    }

    /* Team Section */
    .team-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .team-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }

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

    .team-image {
        height: 300px;
        overflow: hidden;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .team-card:hover .team-image img {
        transform: scale(1.05);
    }

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

    .team-info h3 {
        color: #2E5C3E;
        font-size: 20px;
        margin-bottom: 5px;
    }

    .team-info .position {
        color: #D4A853;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .team-info p {
        color: #666;
        font-size: 14px;
        line-height: 1.7;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1586201375761-5f8c9a7b2a9b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 42px;
        margin-bottom: 20px;
        font-family: 'Playfair Display', serif;
    }

    .cta-section p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 30px;
        opacity: 0.9;
    }

    .cta-button {
        display: inline-block;
        padding: 15px 40px;
        background: #D4A853;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .cta-button:hover {
        background: transparent;
        border-color: white;
        transform: translateY(-3px);
    }


    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .footer-main {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 992px) {
        .story-container,
        .why-container,
        .commitment-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .story-content {
            padding-right: 0;
        }
        
        .timeline::before {
            left: 30px;
        }
        
        .timeline-dot {
            left: 30px;
        }
        
        .timeline-content {
            width: calc(100% - 80px);
            margin-left: 80px !important;
        }
        
        .timeline-item:nth-child(odd) .timeline-content::before,
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -15px;
            right: auto;
            border-right: 15px solid #f8f9fa;
            border-left: none;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .team-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }