  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Spartan', 'Segoe UI', sans-serif;
            color: #716147;
            line-height: 1.6;
            background-color:transparent;
        }

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

        .wide-container {
            width: 100%;
            padding: 0;
        }

        /* Hero Banner - Exact Match */
        .hero-banner {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                        url('https://i0.wp.com/sakalavarisyamfoods.com/wp-content/uploads/2022/10/About_banner_1-1.jpg?fit=630%2C420&ssl=1');
            background-size: cover;
            background-position: center center;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-banner h1 {
            font-size: 60px;
            font-weight: 600;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* About Section - Exact Background */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #FAF8F5 0%, #F5F2ED 100%);
            text-align: center;
        }

     .section-header {
    text-align: center;
    padding: 80px 0;
    position: relative;
}

/* Convert your <h2> into small top subtitle */
.section-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: #6b624f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Convert your <h3> into the large elegant title */
.section-header h3 {
   color: var(--e-global-color-accent);
    font-family: "Cormorant Garamond", serif;
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 60px;
    letter-spacing: 1.5px;
}

/* Leaf behind the heading */
/* .section-header h3::before {
    content: "";
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background-size: 160px;
    width: 180px;
    height: 180px;
    opacity: 0.15;
    z-index: -1;
} */

        .about-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-item {
            text-align: center;
        }

        .about-item img {
            width: 100%;
            max-width: 630px;
            height: auto;
            border-radius: 0;
            margin-bottom: 30px;
        }

        .about-item p {
            font-size: 18px;
            color: #716147;
            line-height: 1.8;
            padding: 0 20px;
        }

        /* History Section - Exact Background Pattern */
        .history-section {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
}

/* Wrapper */
.history-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 50px;
    background-image: linear-gradient(90deg, #F4EBE5 60%, transparent 0%);

}

/* Image Section with Background Color */
.history-image {
    position: relative;
    padding: 0; /* Changed from 40px to 0 */
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: transparent;
    transform: none;
}

.history-image img {
    width: 100%;
    height: 780px;
    object-fit: cover;
    display: block;
}
/* Content */
.history-content {
    padding: 40px 0;
}

.history-content .label {
    color: #BF624C;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.history-content h2 {
       color: var(--e-global-color-accent);
    font-family: "xocora heading", Sans-serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 75px;
    letter-spacing: 1.5px;
}

.history-content p {
    margin-bottom: 20px;
    line-height: 2;
color: var(--e-global-color-accent);
    font-family: "Spartan", Sans-serif;
        font-size: 16px;
}

/* 🔥 Modern Premium Button (Your Requested Style) */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    padding: 15px 45px;
    background-color: transparent;
    /* border: 2px solid #5C4A3A; */
    color: #5C4A3A;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Left line */
.btn-read-more::before {
    content: "";
    width: 35px;
    height: 1px;
    background: currentColor;
    margin-right: 15px;
    transition: all 0.3s ease;
    opacity: 1;
}

/* Right line */
.btn-read-more::after {
    content: "";
    width: 35px;
    height: 1px;
    background: currentColor;
    margin-left: 15px;
    transition: all 0.3s ease;
    opacity: 0;
}

/* Hover Effect */
.btn-read-more:hover {
    background-color: #BF624C;
    border-color: #BF624C;
    color: #fff;
}

.btn-read-more:hover::before {
    opacity: 0;
    margin-right: 0;
}

.btn-read-more:hover::after {
    opacity: 1;
    margin-left: 15px;
}

        /* Products Section - White Background */
        .products-section {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .products-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .products-header h3 {
            font-size: 42px;
            color: #514633;
            font-weight: 500;
            line-height: 1.4;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .product-item {
            text-align: center;
        }

        .product-item img {
            width: 100%;
            max-width: 600px;
            height: 360px;
            object-fit: cover;
            margin-bottom: 35px;
            transition: transform 0.5s;
        }

        .product-item:hover img {
            transform: translateY(-15px);
        }

        .product-item h3 {
            font-size: 28px;
            color: #514633;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .product-item p {
            color: #716147;
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.8;
            padding: 0 30px;
        }

        .product-btn {
            display: inline-block;
            padding: 10px 30px;
            border: 2px solid #BF624C;
            color: #BF624C;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 2px;
            transition: all 0.3s;
            font-weight: 500;
        }

        .product-btn:hover {
            background-color: #BF624C;
            color: white;
        }

        /* Ethos Section - Gradient Background */
        .ethos-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #EBE8E3 0%, #F5F2ED 50%, #EBE8E3 100%);
        }

        .ethos-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 550px;
            gap: 80px;
            align-items: center;
            padding: 0 50px;
        }

        .ethos-content {
            padding: 40px 0;
        }

        .ethos-content h4 {
            color: #BF624C;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .ethos-content h2 {
            font-size: 52px;
            color: #514633;
            margin-bottom: 40px;
            font-weight: 600;
            line-height: 1.2;
        }

        .ethos-content p {
            margin-bottom: 35px;
            line-height: 2;
            color: #716147;
            font-size: 16px;
        }

        .ethos-image img {
            width: 100%;
            height: 780px;
            object-fit: cover;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        /* Team Section - Cream Background */
        .team-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #FAF8F5 0%, #F5F2ED 100%);
            text-align: center;
        }

        .team-header {
            margin-bottom: 80px;
        }

        .team-header h2 {
            font-size: 48px;
            color: #514633;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-header h3 {
            font-size: 38px;
            color: #BF624C;
            font-weight: 500;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card {
            text-align: center;
        }

        .team-photo {
            margin-bottom: 25px;
            position: relative;
        }

        .team-photo img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto;
            display: block;
            border: 3px solid #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .team-card h3 {
            font-size: 22px;
            color: #514633;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .team-card .position {
            color: #BF624C;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .team-socials {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .team-socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: #BF624C;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .team-socials a:hover {
            background-color: #b1553f;
            transform: translateY(-3px);
        }

        /* Video Section - Parallax Background */
        .video-section {
            padding: 150px 0;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                        url('https://i0.wp.com/sakalavarisyamfoods.com/wp-content/uploads/2022/10/About_banner_1-1.jpg?fit=630%2C420&ssl=1');
            background-size: cover;
            background-position: center center;
            background-attachment: fixed;
            text-align: center;
            position: relative;
        }

        .video-play {
            position: relative;
            display: inline-block;
        }

        .video-icon {
            display: flex;
            width: 90px;
            height: 90px;
            background-color: rgba(255,255,255,0.95);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .video-icon:hover {
            transform: scale(1.15);
            background-color: #fff;
        }

        .video-icon::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 22px solid #BF624C;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
            margin-left: 6px;
        }

        /* Store Section - White Background */
        .store-section {
            padding: 100px 0;
            background-color: #ffffff;
        }

        .store-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .store-header h3 {
            font-size: 42px;
            color: #514633;
            font-weight: 500;
        }

        .store-wrapper {
            display: grid;
            grid-template-columns: 600px 1fr;
            gap: 70px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 50px;
            align-items: center;
        }

        .store-image img {
            width: 100%;
            height: 360px;
            object-fit: cover;
        }

        .store-details h2 {
            font-size: 32px;
            color: #514633;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .store-details h3 {
            font-size: 22px;
            color: #BF624C;
            margin-top: 35px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .store-details p {
            color: #716147;
            line-height: 1.9;
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .history-wrapper,
            .ethos-wrapper {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 0 30px;
            }

            .history-image img,
            .ethos-image img {
                height: 500px;
            }

            .store-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero-banner h1 {
                font-size: 36px;
            }

            .about-grid,
            .products-grid,
            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section-header h2,
            .team-header h2 {
                font-size: 32px;
            }

            .section-header h3,
            .products-header h3,
            .store-header h3 {
                font-size: 26px;
            }

            .history-content h2,
            .ethos-content h2 {
                font-size: 36px;
            }

            .products-grid,
            .history-wrapper,
            .ethos-wrapper,
            .store-wrapper {
                padding: 0 20px;
            }
        }



        /* Mobile Responsive: Hero Banner */
@media (max-width: 768px) {
    .hero-banner {
        padding: 40px 0;
        text-align: center;
    }

    .hero-banner .container h1 {
        font-size: 28px;      /* Smaller heading for mobile */
        line-height: 1.3;
        text-align: center;
    }

    .hero-banner .container {
        padding: 0 20px;      /* More spacing on mobile */
    }
}
/* Mobile Responsive: About Section */
@media (max-width: 768px) {

    .about-section {
        padding: 40px 0;
    }

    .about-section .section-header h2 {
        font-size: 22px;
        text-align: center;
    }

    .about-section .section-header h3 {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 20px;
    }

    .about-item {
        text-align: center;
    }

    .about-item img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .about-item p {
        font-size: 16px;
        padding: 10px 15px;
    }
}
