:root {
    --primary-green: #0a3b2c;
    --button-green: #50D387;
    --button-text: #0a3b2c;
    --white: #ffffff;
    --gold: #ffd700;
    --footer-green: #50D387;
    --footer-text: #0a3b2c;
}


/* Add to the top of your styles.css file */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/fonts/Helvetica.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/fonts/HelveticaNeueMedium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/fonts/HelveticaBold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/fonts/HelveticaNeueBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Typography settings for different elements */
h1,
h2,
h3,
.hero-title {
    font-weight: 700;
}

.nav-item,
.btn-download,
.footer-link {
    font-weight: 500;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.text-dark-gray {
    color: rgb(51, 51, 51);
}

.header-wrapper {
    width: 100%;
    padding: 40px;
}

.navbar-container {
    background-color: var(--primary-green);
    border-radius: 50px;
    width: 100%;
    padding: 16px 88px;
}

.logo {
    height: 30px;
}

.menu-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-item {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--white);
    opacity: 0.9;
}

.btn-download {
    background-color: var(--button-green);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-download:hover {
    background-color: var(--white);
    color: var(--primary-green);
    text-decoration: none;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 5px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-menu {
    background-color: var(--primary-green);
    margin: 5px 0;
    border-radius: 15px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.mobile-menu-content .nav-item {
    margin: 8px 0;
}

.common-width {
    padding: 40px;
}

.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    /* top: 10%; */
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}
.hero-second-banner-overlay {
    position: absolute;
    /* top: 0; */
    top: 10%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #0a3b2c;
    margin-bottom: 1rem;
}

.title-underline {
    width: 180px;
    height: 1px;
    background-color: #836CF4;
    margin: 10px auto 20px;
    position: relative;
}

.left-aligned {
    margin-left: 0;
    margin-right: auto;
}

.hero-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    color: #0a3b2c;
    max-width: 650px;
    margin: 1.5rem 0 2.5rem 0;
    text-align: center;
}

.app-button img {
    height: 48px;
}

.features-section {
    padding: 40px 0;
}

.feature-row {
    margin-bottom: 30px;
}

.feature-text-col {
    padding: 30px 50px;
}

.feature-text-content {
    max-width: 512px;
    margin: 0 auto;
}

.feature-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
    color: #0a3b2c;
    margin-bottom: 15px;
}

.feature-image-col {
    padding: 0;
}

.feature-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.how-it-works-section {
    margin: auto;
    padding-top: 60px;
    background-color: var(--white);
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 30px;
}

.step-button {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px 44px;
    font-size: 20px;
    font-weight: 700;
    color: #AFAFAF;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.step-button:hover,
.step-button.active {
    background-color: var(--light-mint, #e6f7f0);
    border-color: var(--button-green);
    color: var(--primary-green);
}

.step-button.active {
    border-width: 2px;
    font-weight: 600;
}

.step-content-container {
    position: relative;
    height: auto;
    padding: 5px;
    align-content: center;
    margin: auto;
    margin-bottom: 40px;
    /* margin: auto 10px; */
}

.step-content-container-background {
    background-color: #B9E8C8;
    border-radius: 40px;
}

.step-content {
    display: none;
    padding: 50px;
}

.step-info-container {
    text-align: left;
}

.purchase-options {
    margin-bottom: 20px;
}

.purchase-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 5px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.purchase-option:hover {
    background-color: var(--button-green);
    cursor: pointer;
}


.option-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-icon i {
    color: #000000;
    font-size: 20px;
}

.option-text {
    font-size: 14px;
    color: #333;
}

.purple-text, .purple-text-big {
    color: #836CF4;
    text-align: left;
}

.purple-text-big {
    font-size: 20px;
    font-weight: 500;
}

.download-prompt {
    text-align: left;
}

.download-prompt p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.app-download-buttons {
    display: flex;
    gap: 10px;
    justify-content: left;
}

.step-image-container {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.step-image {
    max-height: 500px;
    object-fit: contain;
}

.step-title {
    color: #0a3b2c;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 25px;
    text-align: left;
}

.step-content.active {
    display: block;
}

.footer-wrapper {
    margin-top: 20px;
    background-color: var(--white);
    width: 100%;
    /* margin: 40px 0; */
}

.footer-container {
    background-color: var(--footer-green);
    border-radius: 20px;
    width: 100%;
    padding: 16px 30px;
    color: var(--footer-text);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.footer-link:hover {
    text-decoration: underline;
    color: var(--footer-text);
}

.footer-divider {
    height: 1px;
    background-color: var(--white);
    opacity: 0.5;
    margin: 10px 0;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
    color: var(--white);
}

.terms-content {
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    color: #333;
}

.terms-content h3 {
    color: #0a472e;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.terms-content p {
    margin-bottom: 15px;
    font-weight: 400;
}

.app-showcase {
    position: relative;
    width: 604px;
    height: 558px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.app-background {
    position: absolute;
    width: 100%;
    height: 418px;
    border-radius: 20px;
    z-index: 1;
    top: 140px;
}

.app-phone {
    position: relative;
    z-index: 2;
    display: flex;
    height: 556px;
    align-items: center;
    justify-content: center;
}

.app-phone img {
    /* height: 100%; */
    height: 90%;
    width: auto;
    object-fit: contain;
}

.teal-bg {
    background-color: #5AE2E2;
}

.orange-bg {
    background-color: #FFAA37;
}

.light-green-bg {
    background-color: #50D387;
}

.purple-bg {
    background-color: #836CF4;
}

.custom-container {
    padding: 0 80px;
}


.custom-top-margin {
    margin-top: 50px;
}

.custom-bottom-margin {
    margin-bottom: 100px;
}

@media (max-width: 576px) {
    .header-wrapper {
        padding: 15px 15px 5px 15px;
    }

    .navbar-container {
        padding: 10px 15px;
    }

    .logo {
        height: 15px;
    }

    .app-download-buttons {
        margin-top: 10px;
        justify-content: center;
    }

    .google-play {
        height: 45px;
    }

    .app-store {
        height: 32px;
    }

    .common-width {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .title-underline {
        width: 120px;
        margin: 5px auto 12px;
    }

    .step-title {
        text-align: center;
    }

    .how-it-works-section {
        padding: 30px 0;
        padding-top: 20px;
    }

    .step-button {
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .step-content {
        padding: 15px;
    }

    .footer-wrapper {
        margin: 20px 0;
    }

    .footer-container {
        padding: 10px 15px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copyright {
        font-size: 12px;
        text-align: center;
    }

    .hero-overlay {
        /* margin-top: -20px; */
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-text {
        font-size: 12px;
        margin: 0;
        margin-bottom: 20px;
    }

    .purple-text,.purple-text-big {
        text-align: center;
        margin-bottom: 0;
    }

    .features-section {
        padding: 10px 0;
    }
}

@media (max-width: 1024px) {

    .header-wrapper {
        padding: 20px 20px 10px 20px;
        /* position: relative; */
        z-index: 10;
    }

    .hero-title {
        font-size: 24px;
        text-align: center;
    }

    .hero-overlay,.hero-second-banner-overlay {
        padding: 0 5%;
    }

    .hero-second-banner-overlay {
        top:0;
    }

    .title-underline {
        width: 150px;
        margin: 8px auto 15px;
    }

    .mobile-menu {
        position: relative;
        z-index: 20;
    }

    .feature-text-col {
        padding: 30px 20px;
        text-align: center;
    }

    .feature-image-col {
        padding: 0 10px;
    }

    .how-it-works-section {
        /* padding: 40px 0; */
    }

    .steps-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .step-button {
        padding: 10px 20px;
        font-size: 14px;
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    .step-title {
        /* text-align: center; */
        font-size: 24px;
        line-height: 30px;
    }

    .step-image-container {
        padding: 5px;
        justify-content: center;
    }

    .step-image {
        max-height: 400px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        margin-bottom: 20px;
    }

    .app-download-buttons {
        margin-bottom: 10px;
    }

    .app-button img {
        height: 32px;
    }

    .terms-content {
        font-size: 14px;
    }

    .terms-content h3 {
        font-size: 16px;
    }

    .btn-download {
        padding: 12px;
    }

    .app-showcase {
        width: 100%;
        height: 390px;
    }

    .app-phone {
        height: 100%;
    }

    .app-background {
        height: 70%;
        top: 117px;
    }

    .custom-container {
        padding: 0 20px;
    }

    .custom-top-margin {
        margin-top: 50px;
    }
    .custom-bottom-margin {
        margin-bottom: 50px;
    }

    .step-content-container {
        margin-bottom: 0;
    }
}