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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fce7f3 0%, #fdf2f8 20%, #fef7f7 40%, #fefbfb 60%, #ffffff 100%);
    color: #2d3748;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(62, 149, 208, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(91, 163, 217, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(123, 179, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Hero Title Container */
.hero-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 20px rgba(62, 149, 208, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(62, 149, 208, 0.4));
}

/* Landing Page Styles */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 60px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(62, 149, 208, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #3E95D0, #5BA3D9, #7BB3E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(62, 149, 208, 0.1);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2B7BB8;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(43, 123, 184, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: #1E6BA8;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-list li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.hero-list li::before {
    content: "•";
    color: #3e95d0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hero-note {
    font-size: 1.1rem;
    color: #2B7BB8;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(62, 149, 208, 0.1), rgba(91, 163, 217, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(62, 149, 208, 0.2);
    box-shadow: 0 4px 20px rgba(62, 149, 208, 0.1);
    backdrop-filter: blur(10px);
}


.cta-button {
    background: linear-gradient(135deg, #3E95D0, #5BA3D9);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(62, 149, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button span {
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(62, 149, 208, 0.4);
    background: linear-gradient(135deg, #2B7BB8, #3E95D0);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wall-image {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 8px 32px rgba(62, 149, 208, 0.15));
    transition: all 0.3s ease;
}

.wall-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 12px 40px rgba(62, 149, 208, 0.2));
}

/* Questionnaire Styles */
.questionnaire-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.progress-bar-container {
    margin-bottom: 40px;
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF8C00, #FFA500, #FFB347);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-percentage {
    text-align: center;
    font-size: 1.1rem;
    color: #FF8C00;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.question-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.question-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E6BA8;
    margin-bottom: 20px;
    line-height: 1.3;
}

.question-description {
    font-size: 1rem;
    color: #2B7BB8;
    margin-bottom: 30px;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option:hover {
    border-color: #5BA3D9;
    background: rgba(62, 149, 208, 0.05);
}

.option.selected {
    border-color: #3E95D0;
    background: rgba(62, 149, 208, 0.1);
}

.option input[type="radio"],
.option input[type="checkbox"] {
    margin: 0;
    width: 20px;
    height: 20px;
    accent-color: #3E95D0;
}

.option label {
    cursor: pointer;
    font-size: 1rem;
    color: #4a5568;
    flex: 1;
    margin: 0;
}

.input-field {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #4a5568;
    background: white;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.input-field:focus {
    outline: none;
    border-color: #5BA3D9;
    box-shadow: 0 0 0 3px rgba(62, 149, 208, 0.1);
}

.input-field::placeholder {
    color: #a0aec0;
}

/* Location suggestions styling */
.location-container {
    position: relative;
    width: 100%;
}

.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #5BA3D9;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(62, 149, 208, 0.1);
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
    color: #4a5568;
}

.suggestion-item:hover {
    background-color: rgba(62, 149, 208, 0.1);
    color: #3E95D0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-button {
    padding: 16px 32px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-button:hover:not(:disabled) {
    border-color: #5BA3D9;
    color: #3E95D0;
    background: rgba(62, 149, 208, 0.05);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-button {
    background: linear-gradient(135deg, #3E95D0, #5BA3D9);
    color: white;
    border-color: transparent;
}

.next-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #2B7BB8, #3E95D0);
    color: white;
}

/* Thank You Page */
.thank-you-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.social-icons-top {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.social-icon-link {
    color: #3E96D1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
}

.social-icon-link:hover {
    color: #F8A74A;
    background: rgba(248, 167, 74, 0.1);
    transform: translateY(-2px);
}

.social-icon-link svg {
    width: 24px;
    height: 24px;
}

.thank-you-logo {
    margin-bottom: 16px;
}

.congrats-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(62, 150, 209, 0.2));
}

.thank-you-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3E96D1, #5BA3D9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.thank-you-welcome {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3E96D1;
    margin-bottom: 12px;
}

.thank-you-message {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 500px;
}

.benefits-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(62, 150, 209, 0.08) 0%, rgba(248, 167, 74, 0.05) 100%);
    border: 2px solid rgba(62, 150, 209, 0.15);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(62, 150, 209, 0.3);
    box-shadow: 0 4px 12px rgba(62, 150, 209, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-icon {
    background: linear-gradient(135deg, rgba(248, 167, 74, 0.15), rgba(248, 167, 74, 0.08));
    color: #F8A74A;
}

.credit-icon {
    background: linear-gradient(135deg, rgba(62, 150, 209, 0.15), rgba(62, 150, 209, 0.08));
    color: #3E96D1;
}

.benefit-content {
    flex: 1;
}

.benefit-text {
    font-size: 0.9rem;
    color: #2d3748;
    margin-bottom: 6px;
    line-height: 1.5;
}

.benefit-text strong {
    color: #3E96D1;
    font-weight: 600;
}

.benefit-note {
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    margin: 0;
}

.promo-code-section {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.promo-label {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.promo-code {
    background: linear-gradient(135deg, #3E96D1, #5BA3D9);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(62, 150, 209, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.promo-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: codeShine 2.5s infinite;
}

@keyframes codeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.action-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.share-button {
    background: linear-gradient(135deg, #F8A74A, #FFB347);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(248, 167, 74, 0.3);
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(248, 167, 74, 0.4);
    background: linear-gradient(135deg, #FFB347, #F8A74A);
}

.share-button:active {
    transform: translateY(0);
}

.share-button svg {
    width: 20px;
    height: 20px;
}

/* Desktop optimization for thank you page - ensure it fits without scrolling */
@media (min-width: 769px) and (max-height: 900px) {
    .thank-you-container {
        padding: 15px 20px;
        height: 100vh;
        overflow-y: auto;
    }
    
    .congrats-logo {
        height: 60px;
    }
    
    .thank-you-main-title {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }
    
    .thank-you-welcome {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .thank-you-message {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .benefits-section {
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .benefit-item {
        padding: 14px;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
    
    .benefit-note {
        font-size: 0.8rem;
    }
    
    .promo-code {
        font-size: 1.2rem;
        padding: 8px 14px;
    }
    
    .share-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    padding: 12px 24px;
    background: linear-gradient(135deg, #3E95D0, #5BA3D9);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(62, 149, 208, 0.3);
}

/* Mobile-specific layout */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 20px 0;
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title-container {
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-logo {
        height: 120px;
        margin-bottom: 15px;
    }
    
    /* Make decorative elements bigger on tablet too */
    .hero-section::after {
        width: 80px;
        height: 80px;
    }
    
    .hero-section::before {
        width: 90px;
        height: 90px;
    }
    
    .hero-content::before {
        width: 60px;
        height: 60px;
    }
    
    .hero-content::after {
        width: 75px;
        height: 75px;
    }
    
    .hero-title-container::before {
        width: 50px;
        height: 50px;
    }
    
    .hero-title-container::after {
        width: 45px;
        height: 45px;
    }
    
    .cta-button::before {
        width: 45px;
        height: 45px;
    }
    
    .cta-button::after {
        width: 50px;
        height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
        display: none; /* Hide description on mobile */
    }
    
    .hero-note {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 15px;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
        margin: 0 auto;
        max-width: 280px;
    }
    
    /* Hide the big wall image on mobile */
    .hero-image {
        display: none;
    }
    
    /* Create beautiful scattered wall.png decorations like floating hearts */
    .hero-section::after {
        content: '';
        position: absolute;
        top: 8%;
        right: 3%;
        width: 70px;
        height: 70px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.8;
        z-index: -1;
        animation: floatRotate 8s ease-in-out infinite;
        transform: rotate(15deg);
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        bottom: 15%;
        left: 5%;
        width: 60px;
        height: 60px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.6;
        z-index: -1;
        animation: floatRotate 10s ease-in-out infinite reverse;
        transform: rotate(-20deg);
    }
    
    /* Add floating decorative elements */
    .hero-content {
        position: relative;
    }
    
    .hero-content::before {
        content: '';
        position: absolute;
        top: 25%;
        left: 2%;
        width: 50px;
        height: 50px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.4;
        z-index: -1;
        animation: floatRotate 7s ease-in-out infinite;
        transform: rotate(45deg);
    }
    
    .hero-content::after {
        content: '';
        position: absolute;
        bottom: 8%;
        right: 8%;
        width: 65px;
        height: 65px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.7;
        z-index: -1;
        animation: floatRotate 9s ease-in-out infinite reverse;
        transform: rotate(-30deg);
    }
    
    /* Add more decorative elements using additional pseudo-elements */
    .hero-title-container::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -30px;
        width: 40px;
        height: 40px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.5;
        z-index: -1;
        animation: floatRotate 6s ease-in-out infinite;
        transform: rotate(60deg);
    }
    
    .hero-title-container::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: -25px;
        width: 35px;
        height: 35px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.3;
        z-index: -1;
        animation: floatRotate 11s ease-in-out infinite reverse;
        transform: rotate(-45deg);
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -20px;
        width: 30px;
        height: 30px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.6;
        z-index: -1;
        animation: floatRotate 5s ease-in-out infinite;
        transform: rotate(30deg);
    }
    
    .cta-button::after {
        content: '';
        position: absolute;
        top: -10px;
        right: -15px;
        width: 35px;
        height: 35px;
        background-image: url('wall.png');
        background-size: cover;
        background-position: center;
        border-radius: 50%;
        opacity: 0.4;
        z-index: -1;
        animation: floatRotate 12s ease-in-out infinite reverse;
        transform: rotate(-60deg);
    }
    
    /* Enhanced floating and rotating animation */
    @keyframes floatRotate {
        0%, 100% {
            transform: translateY(0px) rotate(var(--rotation, 0deg));
        }
        25% {
            transform: translateY(-8px) rotate(calc(var(--rotation, 0deg) + 5deg));
        }
        50% {
            transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 10deg));
        }
        75% {
            transform: translateY(-8px) rotate(calc(var(--rotation, 0deg) + 5deg));
        }
    }
    
    /* Set custom rotation variables for each element */
    .hero-section::after {
        --rotation: 15deg;
    }
    
    .hero-section::before {
        --rotation: -20deg;
    }
    
    .hero-content::before {
        --rotation: 45deg;
    }
    
    .hero-content::after {
        --rotation: -30deg;
    }
    
    .hero-title-container::before {
        --rotation: 60deg;
    }
    
    .hero-title-container::after {
        --rotation: -45deg;
    }
    
    .cta-button::before {
        --rotation: 30deg;
    }
    
    .cta-button::after {
        --rotation: -60deg;
    }
    
    .questionnaire-container {
        padding: 20px 15px;
    }
    
    .question-content {
        padding: 30px 20px;
    }
    
    .question-title {
        font-size: 1.5rem;
    }
    
    .question-navigation {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-logo {
        height: 100px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-note {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
        max-width: 250px;
    }
    
    /* Adjust decorative elements for smaller screens - make them even bigger */
    .hero-section::after {
        width: 75px;
        height: 75px;
        top: 6%;
        right: 2%;
    }
    
    .hero-section::before {
        width: 100px;
        height: 100px;
        top: 2%;
        left: 2%;
        opacity: 0.6;
        animation: floatRotate 13s ease-in-out infinite;
        transform: rotate(-15deg);
        --rotation: -15deg;
    }
    
    .hero-content::before {
        width: 55px;
        height: 55px;
        top: 20%;
        left: 1%;
    }
    
    .hero-content::after {
        width: 70px;
        height: 70px;
        bottom: 6%;
        right: 6%;
    }
    
    .hero-title-container::before {
        width: 45px;
        height: 45px;
        top: -15px;
        right: -20px;
    }
    
    .hero-title-container::after {
        width: 40px;
        height: 40px;
        bottom: -10px;
        left: -15px;
    }
    
    .cta-button::before {
        width: 40px;
        height: 40px;
        top: -12px;
        left: -15px;
    }
    
    .cta-button::after {
        width: 45px;
        height: 45px;
        top: -8px;
        right: -10px;
    }
    
    .question-content {
        padding: 20px 15px;
    }
    
    .option {
        padding: 12px;
    }
    
    .input-field {
        padding: 12px;
    }
    
    /* Thank you page mobile styles */
    .thank-you-container {
        padding: 15px;
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 30px;
    }
    
    .congrats-logo {
        height: 60px;
    }
    
    .thank-you-main-title {
        font-size: 2rem;
    }
    
    .thank-you-welcome {
        font-size: 1rem;
    }
    
    .thank-you-message {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .benefits-section {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        padding: 14px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .benefit-content {
        text-align: center;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
    
    .benefit-note {
        font-size: 0.8rem;
    }
    
    .promo-code-section {
        align-items: center;
        margin-top: 10px;
    }
    
    .promo-code {
        font-size: 1.1rem;
        padding: 8px 14px;
    }
    
    .share-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
