/* CSS Variables */
:root {
    --green: #b2d321;
    --green-light: #d2dfa7;
    --green-blue: #eef5f1;
    --grey-dark: #707070;
    --grey-light: #c6c6c6;
    --black: #000000;
    --white: #ffffff;
    --container-padding: 120px;
    --max-content-width: 1110px;
    --tablet-padding: 60px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease forwards;
    opacity: 0;
}

.animate-fade-up {
    animation: fade-up 1s ease forwards;
    opacity: 0;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-400 {
    animation-delay: 400ms;
}

/* Header */
.header-main {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
}

@media (min-width: 768px) {
    .header-main {
        padding: 12px var(--tablet-padding);
    }
}

@media (min-width: 1190px) {
    .header-main {
        padding: 12px var(--container-padding);
    }
}

.header-wrapper {
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 200px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    gap: 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .header-container {
        gap: 60px;
        max-width: var(--max-content-width);
    }
}

.header-logo img {
    width: 154px;
    height: 48px;
    object-fit: contain;
}

.header-nav {
    display: none;
    align-items: center;
    gap: 24px;
}

@media (min-width: 961px) {
    .header-nav {
        display: inline-flex;
    }
}

.header-nav a,
.header-nav button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
    padding: 0;
}

.header-nav a:hover,
.header-nav button:hover {
    opacity: 0.7;
}

.header-nav svg {
    width: 16px;
    height: 16px;
}

.btn-contact {
    padding: 8px 24px !important;
    background-color: var(--green) !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease !important;
}

.btn-contact:hover {
    background-color: #9ab01a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 961px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

/* Mobile Menu Dropdown */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    margin-top: 10px;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

@media (min-width: 961px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a,
.mobile-menu button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
    background-color: var(--green-blue);
}

.mobile-menu .btn-contact {
    background-color: var(--green) !important;
    border-radius: 12px;
}

.mobile-menu .btn-contact:hover {
    background-color: #9ab01a !important;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px 60px 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px var(--tablet-padding);
        gap: 30px;
        max-width: var(--max-content-width);
        margin: 0 auto;
        overflow: visible;
    }
}

@media (min-width: 1190px) {
    .hero-section {
        padding: 60px 0;
        gap: 50px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 635px;
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .hero-content {
        flex: 1;
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: none;
    }
}

.hero-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: var(--black);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 35px;
        text-align: left;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 35px;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-description {
        text-align: left;
    }
}

/* App Store Buttons */
.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .app-buttons {
        justify-content: flex-start;
    }
}

.app-button {
    position: relative;
    width: 135px;
    height: 45px;
    background-color: var(--black);
    border: 1px solid #a6a6a6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.app-button:hover {
    background-color: #1a1a1a;
}

.app-button img.icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8px;
    width: 21px;
    height: 24px;
}

.app-button .text-content {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.app-button .small-text {
    font-size: 9px;
    color: var(--white);
    line-height: 1;
}

.app-button .large-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

/* Hero Image - Phone Mockup */
.hero-image {
    flex: 1;
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    overflow: visible;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .hero-image {
        display: flex;
        margin-right: calc(-1 * var(--tablet-padding));
    }
    
    .hero-image img {
        max-width: 380px;
    }
}

@media (min-width: 1024px) {
    .hero-image img {
        max-width: 420px;
    }
}

@media (min-width: 1190px) {
    .hero-image {
        margin-right: calc(-1 * var(--container-padding));
    }
    
    .hero-image img {
        max-width: 600px;
    }
}

.phone-mockup-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 596 / 423;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .phone-mockup-container {
        width: 700px;
        max-width: 700px;
        min-width: 600px;
        flex-shrink: 0;
        margin-left: 20px;
    }
}

@media (min-width: 1200px) {
    .phone-mockup-container {
        width: 800px;
        max-width: 800px;
        min-width: 700px;
    }
}

/* Phone device */
.phone-device {
    position: absolute;
    width: 34.58%;
    height: 100%;
    top: 0;
    left: 48.69%;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 206px;
}

.phone-body {
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    max-width: 209px;
    height: auto;
    object-fit: contain;
}

.phone-effects {
    position: absolute;
    width: 101.45%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}

.phone-screen {
    position: absolute;
    top: 2.5%;
    left: 2.5%;
    width: 95%;
    height: auto;
    max-width: 186px;
    border-radius: 20px;
    object-fit: contain;
}

/* Decorative elements */
.decoration-top-right {
    position: absolute;
    top: 49%;
    left: 74%;
    width: 21%;
    height: auto;
    max-width: 124px;
    object-fit: contain;
}

.icon-center {
    position: absolute;
    width: 7.26%;
    height: auto;
    top: 35.46%;
    left: 28.20%;
    object-fit: contain;
}

.icon-bottom-left {
    position: absolute;
    width: 20.10%;
    height: auto;
    top: 56.50%;
    left: 6.38%;
    object-fit: contain;
}

.icon-center-large {
    position: absolute;
    width: 58.09%;
    height: auto;
    top: 45.86%;
    left: 23.50%;
    object-fit: contain;
}

.icon-left {
    position: absolute;
    width: 20.31%;
    height: auto;
    top: 23.64%;
    left: 0;
    object-fit: contain;
}

.icon-right {
    position: absolute;
    width: 18.09%;
    height: auto;
    top: 25.77%;
    left: 59.93%;
    object-fit: contain;
}

.logo-app {
    position: absolute;
    width: 17.96%;
    height: auto;
    top: 2.60%;
    left: 36.09%;
    object-fit: contain;
}

/* Responsive adjustments for phone mockup */
@media (max-width: 767px) {
    .decoration-top-right,
    .icon-center,
    .icon-bottom-left,
    .icon-center-large,
    .icon-left,
    .icon-right {
        display: none;
    }

    .phone-mockup-container {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .phone-mockup-container {
        max-width: 280px;
    }
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px 30px 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .features-section {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-evenly;
        padding: 0 var(--tablet-padding) 80px var(--tablet-padding);
        max-width: var(--max-content-width);
        margin: 0 auto;
    }
}

@media (min-width: 1190px) {
    .features-section {
        padding: 0 0 80px 0;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    max-width: 350px;
}

@media (max-width: 767px) {
    .feature-card {
        max-width: 100%;
    }

    .feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 100%;
        margin: 0 auto;
    }
}

.feature-icon {
    width: 200px;
    height: 172px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .feature-icon {
        width: 150px;
        height: 129px;
    }
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.feature-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

.specifique-desc {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .specifique-desc {
        white-space: normal;
    }
}

/* Why Choose Section */
.why-choose-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    background-color: var(--green-blue);
    width: 100%;
}

@media (min-width: 768px) {
    .why-choose-section {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        padding: 80px var(--tablet-padding);
    }
}

@media (min-width: 1190px) {
    .why-choose-section {
        padding-left: 0;
        padding-right: 0;
        justify-content: space-between;
    }
    
    .why-choose-section > .why-choose-content,
    .why-choose-section > .why-choose-benefits {
        max-width: calc((var(--max-content-width) - 30px) / 2);
    }
    
    .why-choose-section::before {
        content: '';
        flex: 1;
        max-width: calc((100vw - var(--max-content-width)) / 2);
    }
    
    .why-choose-section::after {
        content: '';
        flex: 1;
        max-width: calc((100vw - var(--max-content-width)) / 2);
    }
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .why-choose-content {
        padding-bottom: 0;
    }
}

.why-choose-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.why-choose-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

@media (min-width: 768px) {
    .why-choose-title-group {
        text-align: left;
    }
}

.why-choose-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}

.why-choose-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.why-choose-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

@media (min-width: 768px) {
    .why-choose-description {
        text-align: left;
    }
}

.btn-download-wrapper {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .btn-download-wrapper {
        justify-content: flex-start;
    }
}

.btn-download-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-color: var(--green);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-download-app:hover {
    background-color: #9ab01a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.btn-download-app span {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.why-choose-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.benefit-card-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--black);
}

.delay-600 {
    animation-delay: 600ms;
}

.delay-800 {
    animation-delay: 800ms;
}

/* How It Works Section */
.how-it-works-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px 0 20px;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .how-it-works-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
        padding: 80px var(--tablet-padding) 0 var(--tablet-padding);
        max-width: var(--max-content-width);
        margin: 0 auto;
    }
}

@media (min-width: 1190px) {
    .how-it-works-section {
        padding: 80px 0 0 0;
        gap: 15px;
        overflow: visible;
    }
}

/* Phone mockup for How section */
.how-phone-container {
    position: relative;
    width: 120%;
    max-width: 120%;
    height: auto;
    flex-shrink: 0;
    align-self: center;
    margin-left: -10%;
}

@media (min-width: 768px) and (max-width: 1189px) {
    .how-phone-container {
        width: 100%;
        max-width: 480px;
        margin-top: -50px;
        margin-left: -130px;
        align-self: flex-end;
    }
}

@media (min-width: 1190px) {
    .how-phone-container {
        max-width: 550px;
        margin-left: -160px;
        align-self: flex-end;
    }
}

.how-phone-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
}

.how-phone-frame {
    position: relative;
    flex: 1;
    width: 100%;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .how-phone-frame {
        margin-left: 0;
    }
}


.how-phone-bg-images {
    position: absolute;
    width: 213.51%;
    height: 158.90%;
    top: -18.64%;
    left: -84.90%;
}

.how-bg-img-1 {
    position: absolute;
    width: 84.51%;
    height: 90.01%;
    top: 6.77%;
    left: 17.16%;
    object-fit: cover;
}

.how-bg-img-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 17.16%;
    top: 5.34%;
    object-fit: cover;
}

.how-bg-img-3 {
    position: absolute;
    width: 71.86%;
    height: 82.23%;
    left: 24.72%;
    top: 5.34%;
    object-fit: cover;
}

.how-phone-device {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    mask-image: linear-gradient(to right, transparent 0px, black 50px);
    -webkit-mask-image: linear-gradient(to right, transparent 0px, black 50px);
}

@media (min-width: 768px) and (max-width: 1189px) {
    .how-phone-device {
        width: 100%;
        mask-image: linear-gradient(to right, transparent 0px, black 60px);
        -webkit-mask-image: linear-gradient(to right, transparent 0px, black 60px);
    }
}

@media (min-width: 1190px) {
    .how-phone-device {
        mask-image: linear-gradient(to right, transparent 0px, black 80px);
        -webkit-mask-image: linear-gradient(to right, transparent 0px, black 80px);
        margin-top: -60px;
    }
}

.how-phone-effects {
    position: absolute;
    width: 101.45%;
    height: 100%;
    top: 0;
    left: 0;
}

.how-phone-screen {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 312px;
  /*  height: 541px; */
}

/* Content */
.how-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    padding-top: 20px;
    padding-bottom: 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .how-content {
        padding-top: 0;
        padding-bottom: 80px;
        background-color: transparent;
    }
}

@media (min-width: 768px) and (max-width: 1189px) {
    .how-content {
        margin-left: -80px;
    }
}

.how-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .how-header {
        text-align: left;
    }
}

.how-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}

.how-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.how-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 16px;
    text-align: left;
}

@media (min-width: 768px) {
    .how-step {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

.how-step-number {
    font-size: 44px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    white-space: nowrap;
}

.how-step-text {
    flex: 1;
}

.how-cta-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    text-align: center;
    padding-bottom: 10px;
}

@media (min-width: 768px) {
    .how-cta-title {
        text-align: left;
        padding-bottom: 10px;
    }
}

/* Responsive adjustments for How section */
@media (max-width: 768px) {
    .how-phone-container {
        width: 450px;
        margin-top: -30px;
        margin-left: -40px;
    }

    .how-phone-device {
        width: 450px;
        height: auto;
        max-height: 900px;
        object-fit: contain;
    }

    .how-phone-screen {
        width: 220px;
      /*  height: 380px; mobile*/
    }

    .how-phone-bg-images {
        display: none;
    }
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    background-color: var(--green-blue);
    position: relative;
    z-index: 10;
   /* margin-top: -50px; */
}

@media (min-width: 768px) {
    .contact-section {
        flex-direction: row;
        padding: 80px var(--tablet-padding);
        justify-content: center;
        align-items: stretch;
    }
}

@media (min-width: 1190px) {
    .contact-section {
        padding: 80px 0;
    }
}

.contact-section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-section-wrapper {
        flex-direction: row;
        max-width: var(--max-content-width);
        margin: 0 auto;
        gap: 30px;
    }
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-content {
        flex: 1.5;
    }
}

.contact-title-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-title-section {
        text-align: left;
    }
}

.contact-label {
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

.contact-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}

@media (min-width: 768px) {
    .contact-description {
        text-align: left;
    }
}

.contact-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 10px;
    }
}

.contact-card svg {
    width: 24px;
    height: 24px;
    color: var(--black);
    flex-shrink: 0;
}

.contact-card span {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
}

/* Footer */
.footer-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 32px 20px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        align-items: flex-start;
        padding: 32px var(--tablet-padding);
        gap: 40px;
        max-width: var(--max-content-width);
        margin: 0 auto;
    }
}

@media (min-width: 1190px) {
    .footer-main {
        padding: 32px 0;
    }
}

.footer-about {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-about {
        text-align: left;
        max-width: 445px;
    }
}

.footer-logo-social {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-logo-social {
        justify-content: flex-start;
    }
}

.footer-logo {
    width: 154px;
    height: auto;
}

.footer-description {
    font-size: 12px;
    line-height: 1.5;
    color: var(--black);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-nav {
        align-items: flex-start;
        flex-shrink: 0;
    }
}

.footer-nav button,
.footer-nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    padding: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

@media (min-width: 768px) {
    .footer-nav button,
    .footer-nav a {
        text-align: left;
    }
}

.footer-nav button:hover,
.footer-nav a:hover {
    opacity: 0.7;
}
.footer-download {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-download {
        align-items: flex-start;
        text-align: left;
        margin: 0;
        margin-left: auto;
        flex-shrink: 0;
    }
}

.footer-download h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}

.footer-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-download-buttons {
        justify-content: flex-start;
    }
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--green);
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        padding: 8px var(--tablet-padding);
    }
}

@media (min-width: 1190px) {
    .footer-bottom {
        padding-left: 0;
        padding-right: 0;
        justify-content: space-between;
    }
    
    .footer-bottom::before {
        content: '';
        flex: 1;
        max-width: calc((100vw - var(--max-content-width)) / 2);
    }
    
    .footer-bottom::after {
        content: '';
        flex: 1;
        max-width: calc((100vw - var(--max-content-width)) / 2);
    }
}

.footer-bottom p {
    font-size: 12px;
    text-align: center;
    color: var(--black);
}

.footer-bottom a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .contact-title {
        font-size: 24px;
    }

    .hero-section,
    .contact-section,
    .footer-main,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
}