/* CSS Variables - MOR Windows Brand Colors */
:root {
    --primary: #008B8B;
    --primary-dark: #006666;
    --secondary: #20B2AA;
    --accent: #008B8B;
    --accent-hover: #006666;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
    --success: #28a745;
    --gold: #ffa500;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    position: relative;
}

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

/* New Header Styles */
.new-header {
    background: #f8f9fa;
    width: 100%;
}

/* Header Top Row */
.header-top {
    background: #f8f9fa;
    padding: 12px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo img {
    height: 162px;
    width: auto;
    object-fit: contain;
}

/* Certification Badges */
.header-badges {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.cert-badge {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cert-badge:hover {
    transform: scale(1.05);
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #008B8B;
    font-weight: 700;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #006666;
}

.phone-icon {
    font-size: 1.5rem;
}

/* Trustpilot Image */
.header-trustpilot {
    display: flex;
    align-items: center;
}

.trustpilot-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Header Bottom Row - Trust Indicators */
.header-bottom {
    background: #2c3e50;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #00b67a;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-top-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .header-badges {
        gap: 1.5rem;
    }
    
    .cert-badge {
        height: 60px;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .header-top {
        padding-bottom: 0;
    }
    
    .header-logo img {
        height: 90px;
    }
    
    .header-badges {
        display: none;
    }
    
    .cert-badge {
        height: 55px;
    }

    .trustpilot-image {
        height: 70px;
    }

    /* Hide dark reassurance strip on mobile */
    .header-bottom {
        display: none;
    }
    
    .trust-indicators {
        display: none;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 15px 0;
    }
    
    .header-logo img {
        height: 60px;
    }
    
    .cert-badge {
        height: 50px;
    }
    
    .trustpilot-widget {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .trustpilot-stars {
        font-size: 1.2rem;
    }
    
    .trust-indicators {
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}

/* Desktop review card - shown on desktop, hidden on mobile */
.review-card-desktop {
    display: block;
}

/* Mobile review card - hidden on desktop */
.review-card-mobile {
    display: none;
}

/* Form reassurance text - hidden on desktop */
.form-reassurance-mobile {
    display: none;
}

/* Mobile CTA button - hidden on desktop */
.mobile-cta-button {
    display: none;
}

/* Hero Section - Two Column Layout */
.hero {
    background: linear-gradient(135deg, rgba(26, 35, 58, 0.85) 0%, rgba(20, 28, 48, 0.82) 100%), url('top background picture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 28, 48, 0.15);
    opacity: 0.6;
}

.hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column - Content */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-small-heading {
    color: #ffd700;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-left h1 {
    color: var(--background);
    font-size: 48px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-supporting-text {
    color: var(--background);
    font-size: 18px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Hero Benefits List */
.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #00b67a;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Right Column - Form */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Form Header Section */
.form-header {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-header-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.form-header-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-header-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.check-icon-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #00b67a;
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

.form-start-title {
    color: #008B8B;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* Quote CTA with Arrow */
.quote-cta-arrow {
    text-align: center;
    margin: 1rem 0;
    animation: bounce 2s infinite;
}

.quote-cta-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.arrow-down {
    font-size: 2.5rem;
    color: #ffd700;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Form Container */
.form-container {
    background: var(--background);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
}

/* Primary CTA Button Styling */
.btn-primary-cta {
    background: #FFD700 !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    min-height: 52px !important;
}

.btn-primary-cta:hover {
    background: #FFC700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

button[type="button"], button[type="submit"], .btn-next {
    min-height: 52px;
}

.form-title-inside {
    color: #008B8B;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 0.5rem 0;
}

.form-subtitle {
    color: #666;
    font-size: 16px;
    text-align: center;
    margin: 0 0 1.5rem 0;
}

/* Hero Responsive Styles */
@media (max-width: 1024px) {
    .hero-split {
        gap: 2rem;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-urgency {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hide yellow small heading on mobile */
    .hero-small-heading {
        display: none;
    }
    
    /* Make main headline - increased by 40% (was 20%, now +20% more) */
    .hero-left h1 {
        font-size: 3.456rem !important;
        text-align: center;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Hide supporting text */
    .hero-supporting-text {
        display: none;
    }
    
    /* Add "Offer Ends Soon" styling - reduced by 20% */
    .hero-benefits::before {
        content: "Offer Ends Soon";
        display: block;
        font-size: 1.56rem;
        font-weight: 700;
        color: #7cb342;
        text-align: center;
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .hero-benefits {
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    /* Benefit items - reduced by 20% more (was 1.3rem, now 1.04rem) */
    .benefit-item {
        font-size: 1.04rem;
        align-items: flex-start;
    }

    .benefit-icon {
        width: 21px;
        height: 21px;
        font-size: 0.8rem;
        margin-top: 2px;
    }
    
    /* Mobile CTA Button - show on mobile only */
    .mobile-cta-button {
        display: block;
        text-align: center;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-mobile-cta {
        background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
        color: #1a1a1a;
        border: none;
        border-radius: 8px;
        padding: 14px 28px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        transition: all 0.3s ease;
        text-transform: none;
        letter-spacing: 0.3px;
    }
    
    .btn-mobile-cta:hover {
        background: linear-gradient(135deg, #FFC700 0%, #FFB700 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
    
    .btn-mobile-cta:active {
        transform: translateY(0);
    }

    /* Restructure layout - review below form */
    .hero-split {
        display: flex;
        flex-direction: column;
    }

    .hero-left {
        order: 1;
        display: flex;
        flex-direction: column;
    }

    /* Hide desktop review card on mobile */
    .review-card-desktop {
        display: none;
    }

    .hero-right {
        order: 2;
    }

    /* Show mobile review card below form */
    .review-card-mobile {
        display: block;
        margin-top: 2rem;
    }

    /* Show form reassurance text on mobile */
    .form-reassurance-mobile {
        display: block;
        text-align: center;
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.75rem;
    }
    
    .form-header {
        padding: 1.5rem;
    }
    
    .form-header-title {
        font-size: 1.1rem;
    }
    
    .form-header-item {
        font-size: 0.9rem;
    }
    
    .form-start-title {
        font-size: 1.3rem;
    }
    
    .quote-cta-text {
        font-size: 1.5rem;
    }
    
    .arrow-down {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 50px;
    }

    .header-logo img {
        height: 70px;
    }

    .trustpilot-image {
        height: 55px;
    }
    
    .hero-left h1 {
        font-size: 2.11rem !important;
        line-height: 1.1;
    }

    .hero-benefits::before {
        font-size: 1.7rem;
        padding-bottom: 0.75rem;
    }
    
    .benefit-item {
        font-size: 1.2rem;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    /* Mobile CTA button - smaller on 480px */
    .btn-mobile-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .form-header {
        padding: 1.25rem;
    }
    
    .form-header-title {
        font-size: 1rem;
    }
    
    .form-header-item {
        font-size: 0.85rem;
    }
    
    .form-start-title {
        font-size: 1.2rem;
    }
    
    .quote-cta-text {
        font-size: 1.3rem;
    }
    
    .arrow-down {
        font-size: 1.8rem;
    }
    
    .check-icon-green {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .form-container {
        padding: 25px 20px;
    }
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e8eef5;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
    width: 20%;
    transition: width 0.3s ease;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

/* Form Benefits Box */
.form-benefits-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border: 2px solid #008B8B;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 12px rgba(0, 139, 139, 0.1);
}

.form-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.form-benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #00b67a;
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Form Question Groups */
.form-question-group {
    margin-bottom: 30px;
}

.question-label {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.form-question-group .button-group {
    justify-content: center;
}

.form-question-group .option-btn {
    min-width: 80px;
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.button-group.vertical {
    flex-direction: column;
}

.option-btn {
    flex: 1;
    padding: 20px;
    border: 2px solid var(--border);
    background: var(--background);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.option-btn:hover {
    border-color: var(--primary);
    background: #fff5f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.15);
}

.option-btn.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--background);
}

.option-btn .icon {
    font-size: 1.5rem;
}

/* Input Groups */
.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

/* Buttons */
.btn-next,
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--background);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.3);
}

.btn-cta {
    padding: 14px 32px;
    background: var(--accent);
    color: var(--background);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

/* Trust Badges */
.trust-badges {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.badge .icon {
    font-size: 1.5rem;
}

/* Review Card Below Form */
.review-card {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(0, 139, 139, 0.2);
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.check-icon {
    width: 14px;
    height: 14px;
}

.review-text {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
    border-bottom: 2px solid #e0e0e0;
}

.process-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.process-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.step-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 2rem;
    min-height: 80px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.4);
}

.step-icon svg {
    width: 35px;
    height: 35px;
}

.process-cta {
    text-align: center;
}

.btn-process-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-process-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #004d4d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.5);
}

/* Trusted By Section */
.trusted-by {
    background: var(--background-alt);
    padding: 40px 0;
    text-align: center;
}

.trusted-by p {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.logos img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-item h3 {
    padding: 15px;
    background: var(--background);
    text-align: center;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}

.gallery-item.no-text img {
    height: 100%;
    object-fit: cover;
}

.gallery-item.promo-box {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    min-height: 200px;
}

.promo-content {
    text-align: center;
    color: var(--background);
}

.promo-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-content p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.gallery-item.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rating {
    text-align: center;
    color: var(--background);
}

.rating .stars {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.rating p {
    margin: 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.rating .reviews {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Info Sections */
.info-sections {
    background: var(--background-alt);
    padding: 60px 0;
}

.info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.info-block.reverse {
    direction: rtl;
}

.info-block.reverse > * {
    direction: ltr;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-colors {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.info-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-content ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.info-content ul li {
    margin-bottom: 10px;
    padding-left: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Color Grid */
.color-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.color-grid-left {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 100%;
}

.color-grid-left .color-item {
    gap: 8px;
}

.color-grid-left .color-swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.color-grid-left .color-name {
    font-size: 0.7rem;
    line-height: 1.2;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--border);
}

.color-swatch:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    border-color: var(--primary);
}

.color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.color-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
    text-align: center;
}

/* Our Promise Section */
.our-promise {
    background: var(--background);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.promise-card {
    background: var(--background);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.15);
    border-color: var(--accent);
}

.promise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
}

.promise-icon svg {
    width: 35px;
    height: 35px;
}

.promise-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.promise-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0 40px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent);
    color: var(--background);
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-large:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 139, 139, 0.4);
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    margin: 50px 0 40px;
}

.reviews-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.reviews-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Customer Reviews Slider */
.reviews-slider-container {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-reviews-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    overflow: hidden;
    flex: 1;
}

.customer-review-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.customer-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.15);
    border-color: var(--accent);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-card-text {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.85rem;
}

/* Slider Arrows */
.slider-arrow {
    background: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--background);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.3);
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--primary);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--background);
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.footer-links a:hover {
    opacity: 0.8;
}

/* Urgency Banner Mobile Styles */
@media (max-width: 768px) {
    body > div:first-child {
        font-size: 0.85rem !important;
        padding: 0.6rem 0.75rem !important;
    }
}

@media (max-width: 480px) {
    body > div:first-child {
        font-size: 0.75rem !important;
        padding: 0.5rem 0.5rem !important;
    }
    
    body > div:first-child span {
        display: block !important;
        margin-top: 0 !important;
    }
    
    body > div:first-child span:last-child {
        margin-top: 0.25rem !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ensure all elements stay within viewport */
    * {
        max-width: 100%;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Fix all sections with inline styles */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    section > div {
        max-width: 100%;
    }

    .header {
        padding: 10px 0;
    }

    .header .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 70px;
    }

    .header-right {
        display: flex;
        align-items: flex-end;
    }

    .header-right > div {
        display: flex;
        flex-direction: column;
        gap: 0.25rem !important;
        align-items: flex-end;
    }

    .header-right a {
        font-size: 1rem !important;
        white-space: nowrap;
    }

    .trustpilot {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .hero-subheading {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .form-container {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Center placeholder text on mobile */
    .input-group input::placeholder {
        text-align: center;
    }

    .button-group {
        flex-direction: column;
    }

    .info-block,
    .info-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .info-content h2 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 250px;
    }

    /* Fix "Why Choose Us" section grid */
    section[style*="grid-template-columns: repeat(3, 1fr)"] > div {
        grid-template-columns: 1fr !important;
    }

    /* Fix promotional badges section */
    section div[style*="display: flex"] {
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
    }

    .color-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .color-grid-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .color-grid-left .color-name {
        font-size: 0.65rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .our-promise {
        padding: 50px 0;
    }

    .promise-card {
        padding: 30px 20px;
    }

    .footer .container {
        padding: 0 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .customer-reviews-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .reviews-header h3 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .reviews-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .btn-cta-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Process Section Responsive */
    .process-section {
        padding: 40px 0;
    }

    .process-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .process-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .process-step {
        padding: 2rem 1rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-heading {
        font-size: 1rem;
        min-height: auto;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon svg {
        width: 30px;
        height: 30px;
    }

    .btn-process-cta {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    /* Fix promotional badges section */
    .logos {
        gap: 20px;
    }

    .logos img {
        height: 50px;
        max-width: 120px;
    }

    .form-benefits-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .form-benefit-item {
        font-size: 0.85rem;
        gap: 10px;
        margin-bottom: 10px;
    }

    .benefit-check {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .form-question-group {
        margin-bottom: 25px;
    }

    .question-label {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .form-question-group .option-btn {
        min-width: 70px;
        font-size: 0.9rem;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo img {
        height: 50px;
    }

    .header-right a {
        font-size: 0.85rem !important;
    }

    .header-right a span {
        font-size: 1.2rem !important;
    }

    .trustpilot {
        font-size: 0.7rem;
    }

    .hero {
        padding: 30px 0 50px;
    }

    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero-subheading {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .form-container {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .form-step h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .form-benefits-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .form-benefit-item {
        font-size: 0.85rem;
        gap: 10px;
        margin-bottom: 10px;
    }

    .benefit-check {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .option-btn {
        padding: 14px;
        font-size: 0.85rem;
    }

    .option-btn .icon {
        font-size: 1.2rem;
    }

    .input-group input {
        padding: 12px;
        font-size: 0.9rem;
    }

    .btn-next,
    .btn-submit {
        padding: 14px;
        font-size: 0.95rem;
    }

    .color-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .color-grid-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .color-name {
        font-size: 0.7rem;
    }

    .color-grid-left .color-name {
        font-size: 0.6rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .promise-card {
        padding: 25px 15px;
    }

    .promise-card h3 {
        font-size: 1.1rem;
    }

    .promise-card p {
        font-size: 0.85rem;
    }

    .customer-reviews-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reviews-slider-container {
        gap: 8px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }

    .reviews-header h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .reviews-header p {
        font-size: 0.85rem;
    }

    .btn-cta-large {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .review-card-text {
        font-size: 0.8rem;
    }

    .review-card {
        padding: 15px;
        margin: 0 5px;
    }

    .reviewer-name {
        font-size: 0.85rem;
    }

    /* Process Section Responsive 480px */
    .process-title {
        font-size: 1.6rem;
    }

    .process-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .step-heading {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-icon svg {
        width: 28px;
        height: 28px;
    }

    .btn-process-cta {
        padding: 14px 30px;
        font-size: 1rem;
        width: 90%;
        max-width: 350px;
    }

    .info-content h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .info-content p,
    .info-content ul li {
        font-size: 0.9rem;
    }

    .gallery-item img {
        height: 220px;
    }

    /* Fix promotional badges */
    .logos {
        gap: 15px;
    }

    .logos img {
        height: 45px;
        max-width: 100px;
    }

    /* Fix final CTA section text */
    section[style*="background: linear-gradient"] h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        padding: 0 10px !important;
    }

    section[style*="background: linear-gradient"] p {
        font-size: 0.85rem !important;
        padding: 0 10px !important;
    }

    .form-benefits-box {
        padding: 12px;
        margin-bottom: 18px;
    }

    .form-benefit-item {
        font-size: 0.8rem;
        gap: 8px;
        margin-bottom: 8px;
    }

    .benefit-check {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }

    .form-question-group {
        margin-bottom: 20px;
    }

    .question-label {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .form-question-group .button-group {
        gap: 8px;
    }

    .form-question-group .option-btn {
        min-width: 60px;
        font-size: 0.85rem;
        padding: 12px 8px;
    }
}

/* Mobile-only compact styling for Step 2 */
@media (max-width: 768px) {
    /* Homeowner question - side by side without icons */
    .form-step[data-step="2"] .form-question-group:first-of-type .button-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .form-step[data-step="2"] .form-question-group:first-of-type .option-btn {
        min-height: 50px;
        padding: 12px;
    }
    
    .form-step[data-step="2"] .form-question-group:first-of-type .option-btn .icon {
        display: none;
    }
    
    /* Windows question - 2×2 grid */
    .form-step[data-step="2"] .form-question-group:nth-of-type(2) .button-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .form-step[data-step="2"] .form-question-group:nth-of-type(2) .option-btn {
        min-height: 50px;
        padding: 12px;
    }
    
    /* Doors question - 2×2 grid */
    .form-step[data-step="2"] .form-question-group:nth-of-type(3) .button-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .form-step[data-step="2"] .form-question-group:nth-of-type(3) .option-btn {
        min-height: 50px;
        padding: 12px;
    }
    
    /* Default button styling - white/light grey */
    .form-step[data-step="2"] .option-btn {
        background: #f8f9fa;
        border: 2px solid #e0e0e0;
        color: #333;
    }
    
    /* Selected button styling - MOR teal with white text */
    .form-step[data-step="2"] .option-btn.selected {
        background: #008B8B;
        border-color: #008B8B;
        color: white;
    }
    
    /* Hover state */
    .form-step[data-step="2"] .option-btn:hover {
        background: #e8f4f8;
        border-color: #008B8B;
        transform: none;
        box-shadow: none;
    }
    
    .form-step[data-step="2"] .option-btn.selected:hover {
        background: #006666;
        border-color: #006666;
    }
    
    /* Reduce vertical spacing between question groups */
    .form-step[data-step="2"] .form-question-group {
        margin-bottom: 20px;
    }
    
    .form-step[data-step="2"] .question-label {
        margin-bottom: 10px;
        font-size: 1.05rem;
    }
    
    /* Validation - highlight unanswered questions */
    .form-step[data-step="2"] .form-question-group.unanswered .question-label {
        color: #dc3545;
        font-weight: 700;
    }
    
    .form-step[data-step="2"] .form-question-group.unanswered {
        padding: 12px;
        background: #fff5f5;
        border-radius: 6px;
        border: 2px solid #dc3545;
    }
    
    /* Continue button - full width yellow */
    .form-step[data-step="2"] #step2Continue {
        width: 100%;
        min-height: 52px;
    }
}

/* Additional mobile-specific overrides for inline styles */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden !important;
    }

    /* Why Choose Us grid fix - target the specific section */
    section[style*="padding: 2rem 0 1.5rem 0"] div[style*="grid-template-columns: repeat(3, 1fr)"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    section[style*="padding: 2rem 0 1.5rem 0"] div[style*="grid-template-columns"] > div {
        margin-bottom: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Fix promotional badges overflow */
    section div[style*="display: flex; justify-content: center"] {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    /* Why Choose Us section */
    section[style*="padding: 2rem 0 1.5rem 0"] h2 {
        font-size: 1.3rem !important;
        padding: 0 10px !important;
    }

    section[style*="padding: 2rem 0 1.5rem 0"] div[style*="grid-template-columns"] > div {
        padding: 0.75rem !important;
    }

    section[style*="padding: 2rem 0 1.5rem 0"] div[style*="grid-template-columns"] > div p {
        font-size: 0.85rem !important;
    }

    section[style*="padding: 2rem 0 1.5rem 0"] div[style*="grid-template-columns"] > div div[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }
    
    /* Step 2 compact styling for smaller screens */
    .form-step[data-step="2"] .question-label {
        font-size: 0.95rem;
    }
    
    .form-step[data-step="2"] .option-btn {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
    
    .form-step[data-step="2"] .form-benefits-box {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .form-step[data-step="2"] .form-benefit-item {
        font-size: 0.8rem;
    }
}

/* Extra small screens - 320px to 375px */
@media (max-width: 375px) {
    .form-step[data-step="2"] .question-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-step[data-step="2"] .option-btn {
        font-size: 0.8rem;
        padding: 10px 6px;
        min-height: 50px;
    }
    
    .form-step[data-step="2"] .form-question-group {
        margin-bottom: 16px;
    }
    
    .form-step[data-step="2"] .form-benefits-box {
        padding: 10px;
        margin-bottom: 14px;
    }
    
    .form-step[data-step="2"] .form-benefit-item {
        font-size: 0.75rem;
        gap: 8px;
    }
}

/* Very small screens - 320px */
@media (max-width: 320px) {
    .form-step[data-step="2"] .question-label {
        font-size: 0.85rem;
    }
    
    .form-step[data-step="2"] .option-btn {
        font-size: 0.75rem;
        padding: 8px 4px;
    }
    
    .form-step[data-step="2"] .form-benefit-item {
        font-size: 0.7rem;
    }
}
