* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Solitas', sans-serif;
    background-color: #f5f5f5;
    color: #333333;
    line-height: 1.6;
}

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header-full-width {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4f0ab2;
    color: #c6ca45;
    z-index: 1000;
}

.content-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.social-bar {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background-color: #340579;
}

.social-bar-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 30px 5px;
    display: flex;
    justify-content: flex-end;
}

.social-bar img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    margin-right: 5px;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: white;
    margin: 0 10px;
}

.cta-btn {
    background-color: #08B417;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #1b8329;
}

.hero-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background-image: url('img/hero-mobile-1080x1920.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    color: #f2f2f2;
}

.hero-full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-full-width .content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

.hero p {
    font-size: 1.5em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: flex;
    flex-direction: column;
    padding: 40px 10px;
}

.feature {
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #4f0ab2;
    border-radius: 10px;
    color: #efe7ff;
}

.img_feature {
    border-radius: 10px 10px 0px 0px;
    padding: 2px;
}
.feature-content-wrapper {
    position: relative;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;

}

.form-section {
    padding: 40px 30px 40px;
    background-color: white;
    margin: 0px 10px 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #4f0ab2;
}

.form-section p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.15m;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 10px 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
    background-color: transparent;
}

.form-group input:focus {
    border-color: #4f0ab2;
    outline: none;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #999;
    transition: all 0.3s;
    pointer-events: none;
    background-color: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.8em;
    color: #4f0ab2;
}

.submit-btn {
    width: 100%;
    background-color: #08B417;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #3eac4e;
}

footer {
    /* Full-bleed footer background */
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    background-color: #4f0ab2;
    color: #f2f2f2;
    text-align: center;
    padding: 20px 20px 15px;
}
footer p {
    font-size: 0.8em;
    }

footer a {
    color: #c6ca45;
    text-decoration: none;
}
.footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.footer-logo img {
    width: 40px;
    height: auto;
    margin: 5px 0;
}


.thanks-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #111; /* fallback while image loads */
}

.thanks-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #f5f5f5;
    /* use a transform to create a smoother composition on some mobile browsers */
    transform: translateZ(0);
}

.thanks-hero::after {
    /* subtle dark overlay for text readability */
    content: '';
    position: absolute;
    inset: 0;
    background: transparent; /* Removed overlay */
    z-index: 1;
}

.thanks-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.96);
    padding: 22px 18px;
    border-radius: 12px;
    max-width: 820px;
    width: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thanks-card .thanks-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 6px;
}

.thanks-card h1 {
    margin: 0 0 12px 0;
    font-size: 1.6rem;
    color: #0b3a3a;
}

.thanks-card p {
    margin: 0 0 12px 0;
    color: #2a2a2a;
    font-size: 1rem;
    line-height: 1.5;
}

.thanks-card .back-btn {
    margin-top: 14px;
    padding: 12px 22px;
    font-weight: 600;
}

.back-btn {
    display: inline-block;
    background-color: #08B417;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #028f17;
}

/* Desktop Styles */
@media (min-width: 768px) {
    body {
        padding: 0;
    }

    .logo img {
    height: 50px;
    margin-right: 10px;
    }

    .features {
        flex-direction: row;
        justify-content: space-between;
    }

    .feature {
        width: 30%;
        margin: 20px 0;
        font-size: 1.05em;
    }

    .hero-full-width {
        background-image: url('img/hero-desktop-1920x1080.webp');
        background-attachment: fixed;
    }

    .hero-full-width .content-wrapper {
        padding: 20px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .hero-full-width h1 {
        font-size: 3.5em;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .hero-full-width p {
        font-size: 1.8em;
        line-height: 1.5;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 800px;
        margin-bottom: 30px;
    }

    .form-section {
        max-width: 600px;
        margin: 30px auto;
    }

    .features {
        max-width: 1000px;
        margin: 30px auto;
    }
    .thanks-hero {
        min-height: 80vh;
        padding: 60px 20px;
    }
    .thanks-card h1 {
        font-size: 2.4rem;
        margin-bottom: 14px;
    }
    .thanks-card p {
        font-size: 1.4rem;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 40px;
    }
}