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

body {
    font-family: 'Urbanist', sans-serif;
    color: #4C4C4C;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

h1,
h2,
h3,
h4 {
    color: #1d1d1c;
    font-weight: 700;
}

h1 {
    font-size: 55px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 40px;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 28px;
    margin-bottom: 1rem;
}

h4 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2AD884;
    text-decoration: none;
}

section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8em 1.8em;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2AD884;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c9b2ff;
}

.btn-secondary {
    background-color: #2AD884;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #c9b2ff;
}

.btn-outline {
    background-color: #ffffff;
    border-color: #2AD884;
    color: #1d1d1c;
}

.btn-outline:hover {
    background-color: #2AD884;
    color: #ffffff;
}

/* --- Header --- */
.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-top {
    background-color: #C9B2FF;
    color: #1D1D1C;
    font-size: 16px;
    padding: 1px 0;
}

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

.header-top-right {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

.certified-logo {
    height: 20px;
    margin-right: 10px;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #1d1d1c;
    font-weight: 600;
    font-size: 17px;
}

.main-nav a:hover {
    color: #2AD884;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1d1d1c;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
}

/* --- Hero Section --- */
.hero {
    padding-top: 200px;
}

.underline-green {
    position: relative;
    display: inline-block;
}

.underline-green::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-2.svg') no-repeat bottom;
    background-size: contain;
}

.underline-yellow {
    position: relative;
    display: inline-block;
}

.underline-yellow::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-1.svg') no-repeat bottom;
    background-size: contain;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

/* --- Features Section --- */


.number-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 25px;
}

.box-blue {
    background-color: #e3f2fd;
}

.box-green {
    background-color: #e8f5e9;
}

.box-purple {
    background-color: #ede7f6;
}

/* Specific styles for text inside the new cards */
.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.features .container {
    text-align: center;

}

/* Style for the "Demander un devis" button */
.features-cta-btn {
    margin-top: 10px;
    padding: 15px 35px;
    /* margin-left: 525px; */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-text,
.circle-text-blue,
.circle-text-yellow {
    position: relative;
    display: inline-block;
}

.circle-text::after,
.circle-text-blue::after,
.circle-text-yellow::after {
    content: '';
    position: absolute;
    width: 115%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.circle-text::after {
    background-image: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-3.svg');
}

.circle-text-blue::after {
    background-image: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-4.svg');
}

.circle-text-yellow::after {
    background-image: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-13.png');
}

/* --- Offer / Pricing Section --- */
.offer-section {
    padding: 80px 0;
    overflow-x: hidden;
}

.container-fluid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 40px;
}

.offer-content-col {
    text-align: center;
}

.offer-content-col .section-title {
    margin-bottom: 40px;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
}

.heading-icon {
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Decorative Images */
.offer-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oval-image-container {
    width: 351px;
    height: 642px;
    top: 33.7px;
    left: 87px;
    border-radius: 220px;
    /* border-radius: 50%; */
    overflow: hidden;
}

.oval-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chart-overlay {
    position: absolute;
    bottom: 50px;
    left: -18px;
    width: 190px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-overlay {
    position: absolute;
    top: 50px;
    left: -30px;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Scribble Circle */
.circle-scribble-blue {
    position: relative;
    display: inline-block;
}

.circle-scribble-blue::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 140%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-4.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

/* Tabs */
.tabs-container {
    max-width: 650px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #f5f5f5;
    border-radius: 50px;
    padding: 8px;
    margin-bottom: 30px;
}

.tab-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tab-tag {
    color: #e54d4d;
    font-size: 11px;
    font-weight: 600;
}

.tab-link {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: #555;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.tab-link.active {
    background: #2AD884;
    color: #fff;
    box-shadow: 0 4px 10px rgba(42, 216, 132, 0.4);
}

/* Tab Content */
.tab-pane {
    display: none;
    padding: 40px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    text-align: left;
}

.tab-pane.active {
    display: block;
}

.tab-pane .price {
    font-size: 18px;
    color: #1d1d1c;
}

.tab-pane .price strong {
    font-size: 32px;
    font-weight: 700;
}

.tab-pane h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tab-pane .description {
    font-size: 16px;
    margin-bottom: 2rem;
}

.tab-pane h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.tab-pane .details-link {
    margin-top: 1.5rem;
    display: inline-block;
    font-weight: 600;
    color: #2AD884;
}

.tab-pane .details-link:hover {
    text-decoration: underline;
}

/* Responsive for Offer Section */
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: 2.5fr 1fr;
    }

    .offer-image-left {
        display: none;
    }
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-image-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .tabs-nav {
        flex-direction: column;
        background: none;
        align-items: stretch;
        gap: 15px;
    }

    .tab-link {
        width: 100%;
        background-color: #f5f5f5;
    }
}

/* --- Support Section --- */
.support-section {
    padding: 60px 0;
}

.support-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 50px;
    background-color: rgba(201, 178, 255, 0.2);
    padding: 50px;
    border-radius: 30px;
}

.support-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-background-circle {
    position: absolute;
    width: 90%;
    padding-bottom: 90%;
    /* Creates a responsive square */
    background-color: #E6DAFF;
    border-radius: 50%;
    z-index: 1;
}

.main-support-image {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.graph-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    z-index: 3;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-text-col h3 {
    font-size: 40px;
    margin-bottom: 1rem;
}

.support-text-col h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-text-col p {
    font-size: 17px;
    max-width: 450px;
    margin-bottom: 2rem;
}

.underline-scribble {
    position: relative;
    display: inline-block;
}

.underline-scribble::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 106%;
    height: 67px;
    background: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-6.svg') no-repeat center center;
    background-size: contain;
}

/* --- Responsive Adjustments for Support Section --- */
@media (max-width: 992px) {
    .support-content-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        text-align: center;
    }

    .support-image-col {
        margin-bottom: 40px;
    }

    .support-text-col p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Software Section --- */
.software-section {
    padding: 80px 0 120px;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
    /* To contain the background circle */
}

.grid-2-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    /* For stacking context */
}

.software-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.software-text .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #1d1d1c;
    mask: url('https://www.comptaways.com/wp-content/uploads/2023/02/ordinateur.svg') no-repeat center;
    mask-size: contain;
    vertical-align: middle;
    margin-right: 10px;
}

.software-text p {
    font-size: 17px;
    color: #4C4C4C;
    line-height: 1.7;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #2AD884;
    mask: url('https://www.comptaways.com/wp-content/uploads/2023/02/check-svgrepo-com.svg') no-repeat center;
    mask-size: contain;
}

.learn-more {
    color: #2AD884;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}

.software-image img {
    max-width: 100%;
    height: auto;
}

.software-cta {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.software-cta .cta-inner {
    display: flex;
    gap: 10px;
}

.software-cta input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.software-cta button {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

/* Add a background circle */
.software-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -15%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-color: rgba(201, 178, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

/* --- Responsive Adjustments for Software Section --- */
@media (max-width: 992px) {
    .grid-2-alt {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .software-image {
        order: -1;
        /* Move image above text on smaller screens */
    }

    .software-text h2 {
        font-size: 36px;
    }

    .software-cta {
        position: static;
        transform: translate(0);
        margin-top: 40px;
    }

    .software-cta .cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .software-cta button {
        width: 100%;
    }

    .software-section::before {
        width: 400px;
        height: 400px;
        top: auto;
        bottom: 0;
        left: -20%;
        transform: translate(0, 20%);
    }
}

/* --- Vision Section --- */
.vision-section {
    padding: 80px 0;
    background-color: #fff;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.vision-intro h2 {
    text-align: left;
    font-size: 40px;
    line-height: 1.3;
}

.underline-scribble-green {
    position: relative;
    display: inline-block;
}

.underline-scribble-green::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url('https://www.comptaways.com/wp-content/uploads/2023/02/Vector-8.svg') no-repeat center bottom;
    background-size: contain;
}

.vision-intro p {
    margin-top: 2rem;
    font-size: 17px;
}

.vision-image-container {
    position: relative;
    text-align: center;
}

.vision-image {
    max-width: 100%;
    border-radius: 50% / 35%;
    /* Creates the tall oval shape */
    display: block;
}

.vision-icon-overlay {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.vision-points h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.vision-list {
    list-style: none;
}

.vision-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.vision-list img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    /* Prevents icons from shrinking */
}

.vision-list p {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
}

/* --- Responsive Adjustments for Vision Section --- */
@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-intro,
    .vision-points {
        text-align: center;
    }

    .vision-intro h2 {
        text-align: center;
    }

    .vision-image-container {
        max-width: 300px;
        margin: 20px auto;
    }

    .vision-list li {
        text-align: left;
    }
}

/* --- Partners Section --- */
.partners-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    /* This keeps the background shapes contained */
}

.partners-section .section-subtitle {
    max-width: 550px;
    margin: 0 auto 50px;
    text-align: center;
}

.underline-purple {
    position: relative;
    display: inline-block;
}

.underline-purple::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('https://www.comptaways.com/wp-content/uploads/2023/03/Vector-17.svg') no-repeat center bottom;
    background-size: contain;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.logo-card {
    background-color: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    transition: transform 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
}

.logo-card img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-card p {
    margin: 0;
    font-weight: 600;
    color: #888;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.bg-shape-blue {
    width: 500px;
    height: 500px;
    background-color: #e0f2ff;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.bg-shape-orange {
    width: 300px;
    height: 300px;
    background-color: #ffe0d0;
    right: -150px;
    top: -50px;
}

/* --- Responsive for Partners Section --- */
@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bg-shape-blue {
        width: 300px;
        height: 300px;
        left: -150px;
    }

    .bg-shape-orange {
        width: 200px;
        height: 200px;
        right: -100px;
    }
}

/* --- Contact Section --- */
.contact-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

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

.contact-images {
    position: relative;
    height: 450px;
    /* Define a height for the container */
}

.contact-image-one,
.contact-image-two {
    position: absolute;
    width: 240px;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 140px;
    /* Creates the oval shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image-one {
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-image-two {
    bottom: 0;
    right: 0;
    z-index: 2;
}

.contact-icon-overlay {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.contact-form-container h2 {
    text-align: left;
    font-size: 40px;
}

.circle-orange {
    position: relative;
    display: inline-block;
}

.circle-orange::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('https://www.comptaways.com/wp-content/uploads/2023/03/Vector-11.svg');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.contact-form-container p {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-row:last-of-type {
    margin-bottom: 30px;
}

.contact-form textarea {
    grid-column: 1 / -1;
    /* Make textarea span full width */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    border-radius: 25px;
    resize: vertical;
    min-height: 120px;
}

.bg-shape-yellow {
    width: 400px;
    height: 400px;
    background-color: #FFF5D9;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -2;
}

/* --- Responsive for Contact Section --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-images {
        display: none;
        /* Hiding the complex image section on smaller screens as often done */
    }

    .contact-form-container h2 {
        text-align: center;
    }
}




/* --- Testimonials --- */
.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    padding: 30px;
    background: #EAFBF3;
    border-radius: 18px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide span {
    display: block;
    color: #2AD884;
    margin-bottom: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.slider-btn.prev {
    left: -60px;
}

.slider-btn.next {
    right: -60px;
}

/* --- Footer --- */
.footer {
    background-color: #F0F0F0;
    color: #1d1d1c;
    padding-top: 120px;
    margin-top: -100px;
    position: relative;
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 50px;
    background-color: #EAFBF3;
    border-radius: 30px;
}

.footer-col h5 {
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #1d1d1c;
}

.footer-col a:hover {
    color: #2AD884;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 1150px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 20px;
        text-align: center;
    }

    .mobile-nav li {
        margin-bottom: 15px;
    }

    .mobile-nav .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}

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

    h2 {
        font-size: 28px;
    }

    .grid-2,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 150px;
        text-align: center;
    }

    .hero-image {
        grid-row: 1;
        /* Move image to the top on mobile */
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .slider-btn {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-top {
        font-size: 12px;
        text-align: center;
    }

    .header-top .container {
        justify-content: center;
    }

    .header-top-right {
        display: none;
    }
}