/* =====================================================
   Gildeboer - Site CSS
   Extracted from live bundle.css + custom.css overrides
   ===================================================== */

/* === CSS Variables === */
:root {
    --primary-color: #1A472A;
    --secondary-color: #D4A843;
    --white-color: #ffffff;
    --background-color: #FAFBF7;
    --background-medium: #EEF1EA;
    --text-dark: #1a1a1a;
    --text-medium: #666666;
    --text-light: #999999;
    --p-color: #717275;
    --primary-dark: #1E3D2A;
    --border-color: #e5e5e5;
    --error-color: #dc2626;
    --surface-color: #f9f9f9;
    --section-bg-color: #FAFBF7;
    --body-font-family: 'DM Sans', sans-serif;
    --heading-font-family: 'DM Sans', sans-serif;
    --p-font-size: 18px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
}

/* === Reset === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--body-font-family);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--background-color);
    color: var(--text-dark);
    font-family: var(--body-font-family);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    font-weight: var(--font-weight-medium);
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 42px; font-weight: var(--font-weight-bold); }
h2 { font-size: 36px; font-weight: var(--font-weight-bold); }
h3 { font-size: 28px; }

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    overflow-wrap: break-word;
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a, button { touch-action: manipulation; transition: all 0.3s; }
a { display: inline-block; color: var(--secondary-color); text-decoration: none; }
a:hover { color: var(--secondary-color); }
b, strong { font-weight: var(--font-weight-bold); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Custom overrides from custom.css */
h1, h2, h3 { letter-spacing: -0.01em; }


/* =====================================================
   TOPBAR
   ===================================================== */
.agri-topbar {
    background-color: var(--surface-color);
    color: var(--text-medium);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.agri-topbar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agri-topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.agri-topbar__welcome {
    opacity: 0.9;
    font-size: 13px;
}

.agri-topbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.agri-topbar__divider {
    opacity: 0.3;
    font-size: 11px;
}

.agri-topbar__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agri-topbar__info-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.agri-topbar__info-item a,
.agri-topbar__info-item span {
    color: var(--text-medium);
    font-size: 13px;
}

.agri-topbar__info-item a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .agri-topbar { display: none; }
}


/* =====================================================
   NAVBAR
   ===================================================== */
.agri-navbar {
    background-color: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.agri-navbar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.agri-navbar__logo img {
    height: 55px;
    width: auto;
}

.agri-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.agri-navbar__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.agri-navbar__menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.agri-navbar__menu-link {
    display: block;
    padding: 32px 18px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.agri-navbar__menu-link:hover,
.agri-navbar__menu-link--active {
    color: var(--primary-color);
}

.agri-navbar__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.agri-navbar__phone-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin-left: 10px;
}

.agri-navbar__phone-wrap > i {
    color: var(--white-color);
    font-size: 18px;
}

.agri-navbar__phone-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1.2;
}

.agri-navbar__phone-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
}

.agri-navbar__phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
}

.agri-navbar__phone:hover {
    color: var(--white-color);
    opacity: 0.9;
}

@media (max-width: 992px) {
    .agri-navbar__toggle {
        display: flex;
        order: 99;
        margin-left: auto;
    }

    .agri-navbar__menu {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .agri-navbar__menu--open {
        display: flex;
    }

    .agri-navbar__menu-link {
        padding: 12px 20px;
    }

    .agri-navbar__actions {
        display: none;
    }
}


/* =====================================================
   HERO SLIDER
   ===================================================== */
.agri-hero {
    position: relative;
    overflow: visible;
}

.agri-hero__slider {
    position: relative;
    height: 570px;
    overflow: hidden;
}

.agri-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.agri-hero__slide--active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.agri-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(20, 60, 40, 0.82) 0%, rgba(30, 70, 50, 0.6) 50%, rgba(30, 70, 50, 0.45) 100%);
}

/* Gradient fade from hero into services strip */
.agri-hero__slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 71, 42, 0.4) 40%, rgba(26, 71, 42, 0.85) 75%, rgb(26, 71, 42) 100%);
    z-index: 3;
    pointer-events: none;
}

.agri-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    text-align: center;
}

.agri-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.agri-hero__heading {
    color: var(--white-color);
    font-size: 76px;
    font-weight: 500;
    line-height: 1.1;
    max-width: 100%;
    margin-bottom: 0;
    letter-spacing: -1px;
    white-space: nowrap;
}

/* Service steps section */
.agri-hero__services-wrap {
    position: relative;
    z-index: 3;
}

.agri-hero__services {
    background-color: var(--primary-color);
    padding: 30px 20px 20px;
    position: relative;
    margin-top: -80px;
}

/* Wave SVG overlapping into the about section below */
.agri-hero__services::after {
    content: '';
    position: absolute;
    bottom: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0 0v99.7C62 69 122.4 48.7 205 66c83.8 17.6 160.5 20.4 240-12 54-22 110-26 173-10a392.2 392.2 0 0 0 222-5c55-17 110.3-36.9 160-27.2V0H0Z' fill='%231A472A' opacity='.5'/%3E%3Cpath d='M0 0v74.7C62 44 122.4 28.7 205 46c83.8 17.6 160.5 25.4 240-7 54-22 110-21 173-5 76.5 19.4 146.5 23.3 222 0 55-17 110.3-31.9 160-22.2V0H0Z' fill='%231A472A'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 4;
}

.agri-hero__services-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.agri-hero__services-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.agri-hero__step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.agri-hero__step-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.agri-hero__step-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    margin: 6px 0 0;
    line-height: 1.4;
}

.agri-hero__step-number {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    border: 2.5px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agri-hero__step-title {
    color: var(--white-color);
    font-size: 36px;
    font-weight: 600;
    margin: 0;
}

.agri-hero__step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.agri-hero__step-arrow {
    color: var(--secondary-color);
    font-size: 28px;
    flex-shrink: 0;
    height: 74px;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .agri-hero__heading {
        font-size: 56px;
        white-space: normal;
    }

    .agri-hero__services-steps {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .agri-hero__step-arrow { display: none; }

    .agri-hero__step {
        width: 100%;
        max-width: 500px;
    }

    .agri-hero__step-number {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }

    .agri-hero__step-title { font-size: 28px; }
}

@media (max-width: 992px) {
    .agri-hero__slider { height: 420px; }
    .agri-hero__heading { font-size: 48px; }
    .agri-hero__label { font-size: 18px; }

    .agri-hero__services {
        margin-top: -60px;
        padding: 40px 20px 80px;
    }
}

@media (max-width: 576px) {
    .agri-hero__slider { height: 480px; }
    .agri-hero__heading { font-size: 34px; }
    .agri-hero__label { font-size: 14px; letter-spacing: 3px; }

    .agri-hero__services-steps {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .agri-hero__services {
        margin-top: -50px;
        padding: 30px 20px 70px;
    }

    .agri-hero__overlay {
        background: linear-gradient(to bottom, rgba(20, 60, 40, 0.85) 0%, rgba(20, 60, 40, 0.7) 100%);
    }

    .agri-hero__step-arrow { display: none; }
    .agri-hero__step { width: 100%; }

    .agri-hero__step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .agri-hero__step-title { font-size: 22px; }
    .agri-hero__step-desc { font-size: 14px; }
    .agri-hero__step-label { font-size: 11px; }
    .agri-hero__services-steps { gap: 16px; }
}


/* =====================================================
   ABOUT
   ===================================================== */
.agri-about {
    padding: 160px 20px 120px;
    background: var(--white-color);
    overflow: hidden;
    position: relative;
}

.agri-about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.agri-about__images {
    position: relative;
    min-height: 620px;
}

.agri-about__img-main {
    width: 90%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    transform: rotate(-3deg);
    border: 8px solid var(--white-color);
    outline: 1px solid var(--border-color);
}

.agri-about__img-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.agri-about__img-overlay {
    position: absolute;
    bottom: -20px;
    left: 15%;
    width: 75%;
    overflow: hidden;
    border: 8px solid var(--white-color);
    outline: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transform: rotate(3deg);
}

.agri-about__img-overlay img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.agri-about__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.agri-about__leaf {
    color: var(--primary-color);
}

.agri-about__heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.agri-about__intro {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--secondary-color);
    padding-bottom: 4px;
    display: inline;
}

.agri-about__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
    margin-top: 24px;
}

.agri-about__features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

.agri-about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.agri-about__feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.agri-about__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.agri-about__btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.agri-about__btn--primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.agri-about__btn--primary:hover {
    opacity: 0.9;
    color: var(--white-color);
}

.agri-about__btn--outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.agri-about__btn--outline:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

@media (max-width: 992px) {
    .agri-about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agri-about__images { min-height: 350px; }
    .agri-about { padding: 80px 20px 60px; }
}

@media (max-width: 576px) {
    .agri-about__heading { font-size: 28px; }

    .agri-about__features {
        flex-direction: column;
        gap: 14px;
    }
}


/* =====================================================
   PROJECTS (Doelgroepen)
   ===================================================== */
.agri-projects {
    padding: 80px 0;
    background-color: var(--background-color);
    overflow: hidden;
}

.agri-projects__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.agri-projects__header {
    text-align: center;
    margin-bottom: 40px;
}

.agri-projects__icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.agri-projects__leaf {
    color: var(--white-color);
    font-size: 18px;
}

.agri-projects__label {
    display: block;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.agri-projects__heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
}

.agri-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.agri-projects__card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.agri-projects__card:hover { transform: none; }

.agri-projects__card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.agri-projects__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.agri-projects__card:hover .agri-projects__card-img img {
    transform: scale(1.05);
}

.agri-projects__card-body { padding: 20px; }

.agri-projects__card-title {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 0;
}

.agri-projects__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agri-projects__card-list li {
    font-size: 16px;
    color: var(--text-medium);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.agri-projects__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.agri-projects__card-img-link { display: block; }
.agri-projects__card-title-link { text-decoration: none; color: inherit; }
.agri-projects__card-title-link:hover .agri-projects__card-title { color: var(--primary-color); }

.agri-projects__card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.agri-projects__card-link::after {
    content: ' \2192';
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.2s;
}

.agri-projects__card-link:hover { color: var(--secondary-color); }
.agri-projects__card-link:hover::after { opacity: 1; }

@media (max-width: 992px) {
    .agri-projects__heading { font-size: 32px; }
    .agri-projects__grid { grid-template-columns: repeat(2, 1fr); }
    .agri-projects__card-img { height: 280px; }
}

@media (max-width: 768px) {
    .agri-projects__header { text-align: left; }
    .agri-projects__icon-wrapper { margin: 0 0 14px; }
}

@media (max-width: 576px) {
    .agri-projects__grid { grid-template-columns: 1fr; }
    .agri-projects__card-img { height: 260px; }
}


/* =====================================================
   OFFERINGS (Producten)
   ===================================================== */
.agri-offerings {
    padding: 80px 20px 140px;
    background-color: var(--white-color);
    position: relative;
}

.agri-offerings__container {
    max-width: 1200px;
    margin: 0 auto;
}

.agri-offerings__header {
    text-align: center;
    margin-bottom: 50px;
}

.agri-offerings__icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.agri-offerings__leaf {
    color: var(--white-color);
    font-size: 18px;
}

.agri-offerings__label {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.agri-offerings__heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
}

.agri-offerings__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.agri-offerings__card {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: visible;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

/* Alternating tilts */
.agri-offerings__card:nth-child(1) { transform: rotate(-1.5deg); }
.agri-offerings__card:nth-child(2) { transform: rotate(1.5deg); margin-top: 20px; }
.agri-offerings__card:nth-child(3) { transform: rotate(-1.5deg); }
.agri-offerings__card:nth-child(4) { transform: rotate(1.5deg); margin-top: 20px; }
.agri-offerings__card:nth-child(5) { transform: rotate(1.5deg); margin-top: 10px; }
.agri-offerings__card:nth-child(6) { transform: rotate(-1.5deg); margin-top: -10px; }
.agri-offerings__card:nth-child(7) { transform: rotate(1.5deg); margin-top: 10px; }
.agri-offerings__card:nth-child(8) { transform: rotate(-1.5deg); margin-top: -10px; }

.agri-offerings__card:hover {
    z-index: 2;
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.agri-offerings__card-img {
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.agri-offerings__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.agri-offerings__card:hover .agri-offerings__card-img img {
    transform: scale(1.05);
}

.agri-offerings__card-body {
    padding: 0 20px 30px;
    position: relative;
}

.agri-offerings__card-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -32px auto 16px;
    color: var(--white-color);
    position: relative;
    z-index: 1;
    border: 5px solid var(--white-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.agri-offerings__card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0;
}

.agri-offerings__card-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .agri-offerings__header { text-align: left; }
    .agri-offerings__icon-wrapper { margin: 0 0 14px; }
}

@media (max-width: 992px) {
    .agri-offerings__grid { grid-template-columns: repeat(2, 1fr); }
    .agri-offerings__heading { font-size: 32px; }
}

@media (max-width: 576px) {
    .agri-offerings--hide-mobile { display: none; }
}


/* =====================================================
   CTA BANNER
   ===================================================== */
.agri-cta {
    position: relative;
    background-color: var(--primary-color);
    padding: 0;
    overflow: visible;
    padding-bottom: 40px;
    margin-bottom: 0;
}

/* Textured background */
.agri-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.agri-cta__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 420px;
}

.agri-cta__container--centered {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}

.agri-cta__content {
    padding: 60px 0;
}

.agri-cta__container--centered .agri-cta__content {
    padding: 50px 0;
}

.agri-cta__heading {
    color: var(--white-color);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.2;
}

.agri-cta__heading:not(:last-child) {
    margin-bottom: 28px;
}

.agri-cta__btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.agri-cta__btn:hover {
    opacity: 0.9;
    color: var(--white-color);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .agri-cta__container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .agri-cta__images { display: none; }

    .agri-cta__content {
        text-align: center;
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .agri-cta__heading { font-size: 32px; }
}


/* =====================================================
   LOCATION / CONTACT CARD (split layout)
   ===================================================== */
.location-section {
    background-color: var(--primary-color);
    padding-top: 0;
    padding-bottom: 80px;
    margin-top: -1px;
    position: relative;
}

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

.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-side {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details { margin-bottom: 40px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: var(--p-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-medium);
    color: var(--p-color);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: var(--p-font-size);
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-normal);
    color: var(--p-color);
    line-height: 1.5;
    margin: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover { color: var(--secondary-color); }

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.contact-button.primary {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(30, 61, 120, 0.3);
}

.contact-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 61, 120, 0.4);
}

.contact-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.contact-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.map-side {
    position: relative;
    background: #e9ecef;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

/* Bootstrap row/col used by location section */
.row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.col-lg-12, .col-12 { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }
.text-center { text-align: center; }
.mb-lg-5 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }

@media (max-width: 992px) {
    .location-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-side { padding: 50px 40px; }
    .map-side { min-height: 400px; }
}

@media (max-width: 768px) {
    .contact-side { padding: 40px 30px; }
    .contact-item { padding: 15px 0; margin-bottom: 30px; }
    .contact-icon { width: 45px; height: 45px; }
    .contact-actions { gap: 12px; }
    .map-side { min-height: 350px; }
}

@media (max-width: 480px) {
    .contact-side { padding: 30px 20px; }
    .contact-item { gap: 15px; padding: 12px 0; margin-bottom: 25px; }
    .contact-icon { width: 40px; height: 40px; }
    .contact-text h3 { font-size: 16px; }
    .contact-text p { font-size: 14px; }
    .contact-button { padding: 14px 20px; font-size: 15px; }
    .map-side { min-height: 300px; }
}


/* =====================================================
   CONTACT FORM
   ===================================================== */
.agri-contact {
    position: relative;
    padding: 80px 20px;
    background-color: var(--white-color);
    overflow: hidden;
}

.agri-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.agri-contact__left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.agri-contact__image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
}

.agri-contact__green-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.agri-contact__photo-circle {
    position: absolute;
    top: 30px;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.agri-contact__photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.agri-contact__small-circle {
    position: absolute;
    bottom: 20px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    z-index: 3;
}

.agri-contact__caption {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-medium);
    letter-spacing: 0.5px;
    margin-top: 8px;
    position: relative;
    left: 40px;
}

.agri-contact__right { position: relative; }

.agri-contact__label {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.agri-contact__heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.agri-contact__desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.agri-contact__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.agri-contact__field input,
.agri-contact__field textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    background-color: var(--section-bg-color);
    transition: box-shadow 0.3s;
    outline: none;
}

.agri-contact__field input::placeholder,
.agri-contact__field textarea::placeholder {
    color: var(--text-light);
}

.agri-contact__field input:focus,
.agri-contact__field textarea:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.agri-contact__field textarea {
    resize: vertical;
    min-height: 100px;
}

.agri-contact__btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 8px;
}

.agri-contact__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.agri-contact__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.agri-contact__hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.agri-contact__feedback {
    margin-top: 16px;
    font-size: 15px;
    min-height: 24px;
}

.agri-contact__feedback--success {
    color: var(--primary-color);
    font-weight: 600;
}

.agri-contact__feedback--error {
    color: var(--error-color);
}

@media (max-width: 992px) {
    .agri-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agri-contact__left { min-height: 350px; }
}

@media (max-width: 576px) {
    .agri-contact__heading { font-size: 28px; }

    .agri-contact__image-wrapper {
        width: 280px;
        height: 280px;
    }

    .agri-contact__photo-circle {
        width: 220px;
        height: 220px;
    }

    .agri-contact__green-circle {
        width: 160px;
        height: 160px;
    }

    .agri-contact__small-circle {
        width: 40px;
        height: 40px;
    }
}


/* =====================================================
   SERVICE DETAIL
   ===================================================== */
.service-detail {
    padding: 100px 20px;
    background: var(--white-color);
}

.service-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
.service-detail__sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

.service-detail__nav { margin-bottom: 30px; }

.service-detail__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.service-detail__nav-group {
    border-bottom: 1px solid var(--border-color);
}

.service-detail__nav-group:last-child { border-bottom: none; }

.service-detail__nav-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white-color);
    text-decoration: none;
    transition: all 0.2s;
}

.service-detail__nav-group-header:hover { color: var(--primary-color); }
.service-detail__nav-group-header--expanded { color: var(--primary-color); }

.service-detail__nav-chevron {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.service-detail__nav-group-header--expanded .service-detail__nav-chevron {
    transform: rotate(180deg);
}

.service-detail__nav-subitems {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-detail__nav-subitems--open { max-height: 500px; }

.service-detail__nav-sublink {
    display: block;
    padding: 8px 20px 8px 36px;
    font-size: 14px;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.2s;
}

.service-detail__nav-sublink:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.service-detail__nav-sublink--active {
    color: var(--white-color);
    background: var(--primary-color);
    font-weight: 500;
}

.service-detail__nav-sublink--active:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

/* Sidebar CTA */
.service-detail__cta {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 36px 28px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-detail__cta::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.service-detail__cta::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.service-detail__cta-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 24px;
    color: var(--white-color);
    position: relative;
    z-index: 1;
}

.service-detail__cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.25s ease;
    position: relative;
    z-index: 1;
}

.service-detail__cta-btn:hover {
    opacity: 0.9;
    color: var(--white-color);
}

/* Main Content */
.service-detail__content {
    flex: 1;
    min-width: 0;
}

/* Hero with breadcrumbs */
.service-detail__hero {
    position: relative;
    margin-bottom: 36px;
}

.service-detail__hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-detail__breadcrumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.45));
}

.service-detail__breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail__breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.service-detail__breadcrumb-item--active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.service-detail__breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.service-detail__breadcrumb-link:hover { color: #fff; }

.service-detail__breadcrumb-sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.service-detail__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 28px;
    line-height: 1.3;
}

.service-detail__intro {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 28px;
}

.service-detail__description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.service-detail__description p { margin: 0 0 20px; }
.service-detail__description p:last-child { margin-bottom: 0; }

/* Highlights */
.service-detail__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail__highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service-detail__highlight-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail__highlight-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-detail__highlight-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-detail__highlight-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Quote */
.service-detail__quote {
    border-left: 4px solid var(--secondary-color);
    background: var(--background-color);
    padding: 28px 32px;
    margin: 0 0 44px;
    border-radius: 0 6px 6px 0;
}

.service-detail__quote p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Bottom (image + benefits) */
.service-detail__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 48px;
}

.service-detail__bottom-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail__benefits-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px;
    line-height: 1.3;
}

.service-detail__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-detail__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-detail__benefit-icon {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .service-detail { padding: 70px 20px; }
    .service-detail__container { gap: 30px; }
    .service-detail__sidebar { width: 260px; }
    .service-detail__hero-image { height: 340px; }
}

@media (max-width: 768px) {
    .service-detail { padding: 50px 16px; }
    .service-detail__container { flex-direction: column; }
    .service-detail__sidebar { width: 100%; position: static; }
    .service-detail__hero-image { height: 260px; }
    .service-detail__title { font-size: 26px; }
    .service-detail__bottom { grid-template-columns: 1fr; }
    .service-detail__bottom-image { height: 240px; }
}

@media (max-width: 576px) {
    .service-detail__title { font-size: 22px; }
    .service-detail__hero-image { height: 200px; }
    .service-detail__cta { padding: 28px 20px; }
    .service-detail__cta-heading { font-size: 19px; }
    .service-detail__quote { padding: 18px 20px; }
}


/* =====================================================
   FOOTER
   ===================================================== */
.agri-footer {
    position: relative;
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 20px 0;
    overflow: visible;
    border-top: 3px solid var(--primary-color);
}

.agri-footer__wave {
    position: absolute;
    top: -79px;
    left: 0;
    width: 100%;
    height: 80px;
    transform: scaleY(-1);
    z-index: 4;
}

.agri-footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.agri-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.agri-footer__logo {
    max-height: 45px;
    width: auto;
    margin-bottom: 18px;
}

.agri-footer__brand-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
}

.agri-footer__social {
    display: flex;
    gap: 10px;
}

.agri-footer__col-title {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0;
}

.agri-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agri-footer__links li { margin-bottom: 12px; }

.agri-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agri-footer__links a::before {
    content: "\203A";
    font-size: 18px;
    line-height: 1;
}

.agri-footer__links a:hover { color: var(--secondary-color); }

.agri-footer__news {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agri-footer__news-item {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.agri-footer__news-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agri-footer__news-title {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    line-height: 1.5;
}

.agri-footer__news-link {
    text-decoration: none;
    transition: color 0.2s;
}

.agri-footer__news-link:hover { color: rgba(255, 255, 255, 0.9); }

.agri-footer__news-item:not(:has(.agri-footer__news-thumb)) .agri-footer__news-title::before {
    content: "\203A";
    font-size: 18px;
    margin-right: 8px;
    line-height: 1;
}

.agri-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agri-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.agri-footer__contact li i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.agri-footer__contact li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.agri-footer__contact li a:hover { color: var(--secondary-color); }
.agri-footer__contact li span { color: rgba(255, 255, 255, 0.6); }

/* Bottom Bar */
.agri-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

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

.agri-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.agri-footer__legal {
    display: flex;
    gap: 20px;
}

.agri-footer__legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.agri-footer__legal a:hover { color: var(--secondary-color); }

@media (max-width: 992px) {
    .agri-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .agri-footer__grid { grid-template-columns: 1fr; }

    .agri-footer__col:nth-child(2),
    .agri-footer__col:nth-child(3) {
        display: none;
    }

    .agri-footer__bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* =====================================================
   UTILITIES
   ===================================================== */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

@media screen and (max-width: 992px) {
    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
