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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
header {
    background: #14331a;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #be7c2e;
    letter-spacing: -0.02em;
    margin-bottom: 0.125rem;
}

.logo p {
    font-size: 0.75rem;
    color: #a8c5b8;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

nav a:hover,
nav a.active {
    color: #be7c2e;
}

.header-btn {
    flex-shrink: 0;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.btn {
    background: #be7c2e;
    color: #14331a;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s;
    letter-spacing: -0.01em;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    background: #c89760;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Hero Section */
.hero {
    background: url("images/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 18rem 0 3.8rem;
    position: relative;
   
}

.hero-content {
    display: grid;
    grid-template-columns: 4.3fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text h2 {
   
    font-size: 3.45rem;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.0rem;
   
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.125rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.highlight {
    text-align: center;
    padding: 1.5rem;
    background: #14331a;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
     margin-right: 20px;
}

.highlight strong {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #efe2d7;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #14331a;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.description {
    text-align: center;
    font-size: 1.0625rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.card {
    background: transparent;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e8ddd0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background: #fafaf8;
}

.card img {
    width: 200px;
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 8%;
    border: 2px #30150f solid;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

/* Partnership Section */
.partnership {
    background: linear-gradient(135deg, #14331a 0%, #14331a 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
       background: url("images/farm.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.partnership h2 {
  
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.partnership p {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.logos img {
    height: 80px;
    filter: brightness(0) invert(1);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #14331a;
}

.products h2 {
   
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 0.7fr));
    gap: 2rem;
}

.product-card {
    background: #14331a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card p {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    letter-spacing: -0.01em;
    background: #14331a;
}

/* Footer */
footer {
    background: #14331a;
    color: white;
    padding: 3rem 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

footer p {
    font-size: 0.9375rem;
    opacity: 0.8;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 1;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-text h2 {
        font-size: 2.75rem;
    }

    .services h2,
    .products h2 {
        font-size: 2.25rem;
    }

    .partnership h2 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Header */
    header {
        padding: 1rem 0;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .logo p {
        font-size: 0.65rem;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
    }

    nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 1rem;
        background: #14331a;
        border-top: 1px solid #14331a;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0 0.5rem;
    }

    nav li {
        padding: 0.75rem 0;
        border-bottom: 1px solid #14331a;
    }

    nav li:last-child {
        border-bottom: none;
    }

    .header-btn {
        order: 3;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Hero */
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .highlight {
        padding: 1rem;
    }

    .highlight strong {
        font-size: 0.9375rem;
    }

    /* Services */
    .services {
        padding: 4rem 0;
    }

    .services h2 {
        font-size: 1.875rem;
    }

    .subtitle {
        font-size: 1.0625rem;
    }

    .description {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card h3 {
        font-size: 1.125rem;
    }

    /* Partnership */
    .partnership {
        padding: 3rem 0;
    }

    .partnership h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .partnership p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .logos {
        gap: 2rem;
    }

    .logos img {
        height: 60px;
    }

    /* Products */
    .products {
        padding: 4rem 0;
    }

    .products h2 {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card img {
        height: 180px;
    }

    .product-card p {
        padding: 1.25rem;
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 2rem 0;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    footer p {
        font-size: 0.875rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.75rem;
    }

    .services h2,
    .products h2 {
        font-size: 1.625rem;
    }

    .partnership h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .card {
        padding: 1.75rem 1.25rem;
    }
}