:root {
    --primary-color: #1B7A2B; /* Forest Green */
    --primary-dark: #0E5C1A;
    --accent-color: #F5A623;   /* Harvest Orange */
    --bg-light: #F0F5ED;       /* Light Sage */
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

.mobile-break {
    display: none;
}

body {
    font-family: "Work Sans", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}


/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 5%;
    font-size: 13px;
    z-index: 1001;
    position: relative;
    transition: var(--transition);
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar-item:hover {
    color: var(--accent-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Redesigned Centered Navbar (White) */
.centered-nav {
    background: var(--white);
    height: 90px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 0 5%;
    overflow: visible; /* Added to allow logo drop visibility */
}

.centered-nav.scrolled {
    height: 75px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-nav-flex {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.menu-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.menu-right {
    justify-content: flex-start;
    padding-left: 40px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700; /* Bolded */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.logo-center {
    flex: 0 0 auto;
    z-index: 1002;
    background: var(--white);
    padding: 30px;
    border-radius: 0 0 50% 50%; /* Rounded bottom "eating" into navbar */
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
    margin-top: 30px; /* Pull it down to eat into the nav */
    transition: var(--transition);
}

.logo-center img {
    height: 115px; /* Increased size */
    width: auto;
    transition: var(--transition);
    display: block;
}

.centered-nav.scrolled .logo-center {
    margin-top: 15px;
    padding: 10px;
}

.centered-nav.scrolled .logo-center img {
    height: 70px;
}

/* Hamburger Menu Redesign for White Nav */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/img-casava.png") center/cover no-repeat;
    animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    135deg,
    rgba(27, 122, 43, 0.88) 0%,
    rgba(61, 165, 77, 0.82) 100%
    );
}

.hero-overlay::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
    );
    background-size: 50px 50px;
    animation: moveGrid 15s linear infinite;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800; /* Extra bold */
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero .tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #f5a623;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    font-weight: 600; /* Bolded */
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f5a623;
    color: #0e5c1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
    background: #ffbf4e;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid white;
}

.secondary-button:hover {
    background: white;
    color: #1b7a2b;
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 6rem 5%;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-title {
    font-size: 2.5rem;
    color: #1b7a2b;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, #1b7a2b 0%, #3da54d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.consultation::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.1) 0%,
    transparent 70%
    );
    animation: pulse 8s ease-in-out infinite;
}

.consultation .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.consultation .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.consultation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.consultation-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.consultation-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.consultation-form h3 {
    color: #1b7a2b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1b7a2b;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #1b7a2b;
    box-shadow: 0 0 0 3px rgba(27, 122, 43, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #1b7a2b;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #0e5c1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose {
    background: #f8f9fa;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-choose-list {
    list-style: none;
}

.why-choose-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.why-choose-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    background: #f5a623;
    border-radius: 50%;
}

.why-choose-item h4 {
    color: #1b7a2b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-choose-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

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

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

.about-text h3 {
    color: #1b7a2b;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-top: 4px solid #1b7a2b;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 166, 35, 0.1),
    transparent
    );
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(27, 122, 43, 0.25);
}

.service-card h3 {
    color: #1b7a2b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-card h3 i {
    color: #f5a623;
    font-size: 1.8rem;
}

/* Modernized Impact/Achievements Section */
.achievements {
    padding: 100px 5%;
    background: var(--white);
}

.achievements .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.achievements .section-subtitle {
    margin-bottom: 60px;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.achievement-card {
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 5px solid var(--primary-color);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(27, 122, 43, 0.12);
    background: var(--white);
}

.achievement-card h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.achievement-card h4 i {
    font-size: 3rem;
    color: var(--accent-color);
}

.achievement-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* Pipeline Section */
.pipeline {
    background: white;
}

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

.pipeline-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.pipeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(27, 122, 43, 0.2);
}

.pipeline-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.pipeline-card:hover .pipeline-image img {
    transform: scale(1.1);
}

.pipeline-content {
    padding: 2rem;
}

.pipeline-content h3 {
    color: #1b7a2b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pipeline-content h3 i {
    color: #f5a623;
    font-size: 1.8rem;
}

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

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1b7a2b, #f5a623);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(27, 122, 43, 0.2);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.contact-item h4 {
    color: #1b7a2b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h4 i {
    color: #f5a623;
}

.contact-item p {
    color: #555;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1b7a2b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

/* Footer */
footer {
    background: #0e5c1a;
    color: white;
    text-align: center;
    padding: 2rem 5%;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Parallax Effect — Cassava Fixed Background */
.parallax-section {
    height: 400px;
    background: url("../images/img-casava.png") center/cover fixed no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 122, 43, 0.82);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parallax-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Policy Pages Styling */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 10px;
}

.policy-sub-section {
    margin-top: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--bg-light);
}

.policy-sub-section h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .site-container {
        margin: 0;
        box-shadow: none;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 5%;
        top: 40px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        padding: 0;
        justify-content: center;
        z-index: 1000;
    }
    
    .nav-menu.active {
        max-height: 800px;
        padding: 20px 0;
    }
    
    .nav-menu.menu-left.active,
    .nav-menu.menu-right.active {
        position: relative;
        top: 0;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
    }
    
    .nav-menu li a {
        font-size: 15px;
    }

    .centered-nav {
        height: auto;
        padding: 10px 5%;
    }
    
    .main-nav-flex {
        flex-direction: column;
        gap: 10px;
    }

    .logo-center {
        order: -1;
        margin-top: 10px;
        padding: 15px;
    }
    
    .logo-center img {
        height: 70px;
    }

    /* Section Layout Stacking */
    section {
        padding: 3rem 5%;
    }

    .hero {
        height: auto;
        min-height: 70vh;
        padding: 6rem 5% 4rem;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

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

    .hero-buttons {
        gap: 1rem;
    }

    .cta-button,
    .secondary-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .about-content,
    .consultation-container,
    .why-choose-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image,
    .why-choose-image {
        height: 300px;
    }

    .about-content:nth-child(odd) .about-image {
        order: -1;
    }

    .consultation-stats {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text,
    .consultation-container > div:first-child {
        text-align: center;
    }

    .consultation-form {
        padding: 1.25rem;
    }

    .consultation-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .mobile-break {
        display: block;
    }
}

@media (max-width: 600px) {
    .top-bar-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        display: flex;
        width: 100%; /* Ensure it spans the width for centering */
    }

    .top-bar-item {
        justify-content: center; /* Center icon and text group */
        width: 100%;
        gap: 10px;
    }

    .top-bar-item i {
        width: 20px;
        text-align: center;
    }

    .social-links {
        margin-top: 0.5rem;
    }

    .social-links a {
        margin: 0 10px;
    }
    
    .services-grid,
    .values-grid,
    .achievements-container,
    .pipeline-grid {
        grid-template-columns: 1fr;
    }

    .consultation-stats {
        grid-template-columns: 1fr;
    }

    .logo-center img {
        height: 65px;
    }

    .logo-center {
        padding: 12px;
        margin-top: 5px;
        border-radius: 0 0 30% 30%;
    }

    .top-bar {
        padding: 10px 5%;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}



.cookie-consent,
#cookies-policy .cookiesBtn__link {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color)) !important;
    border: 1px solid var(--primary-dark) !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
}