/* CSS Variables - Superior Windows Brand Colors */
:root {
    --primary: #c41e3a;
    --primary-dark: #a01729;
    --secondary: #e63946;
    --accent: #c41e3a;
    --accent-hover: #a01729;
    --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;
}

/* Header */
.header {
    background: var(--background);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--accent);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo img {
    height: 120px;
}

.trustpilot {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.92) 0%, rgba(160, 23, 41, 0.88) 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(160, 23, 41, 0.2);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--background);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subheading {
    color: var(--gold);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

/* 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;
}

/* 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(196, 30, 58, 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(196, 30, 58, 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(196, 30, 58, 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(196, 30, 58, 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(196, 30, 58, 0.2);
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 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;
}

/* 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(196, 30, 58, 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(196, 30, 58, 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(196, 30, 58, 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(196, 30, 58, 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(196, 30, 58, 0.3);
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 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 10px;
    }

    .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;
    }

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

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

@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;
    }

    .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;
    }

    .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;
    }
}

/* 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;
    }
}
