/* --- 1. RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* --- 2. ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
}

/* --- 3. HEADER --- */
.site-header {
    background-color: #fff;
    padding: 0 5%;
    height: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}
.header-logo img { max-height: 50px; width: auto; }

/* --- 4. HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* --- 5. FEATURES SECTION (Landing Pages) --- */
.features-section { padding: 60px 0; background-color: #ffffff; }
.section-title { text-align: center; font-size: 2rem; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 50px; font-size: 1.1rem; }
.feature-row { display: flex; flex-direction: column; gap: 30px; margin-bottom: 60px; align-items: center; }
.feature-row:last-child { margin-bottom: 0; }
.feature-text h3 { font-size: 1.5rem; color: #e63946; margin-bottom: 15px; font-weight: 700; }
.feature-text p { color: #555; margin-bottom: 15px; }
.feature-image img { width: 100%; max-width: 500px; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: block; margin: 0 auto; }

/* --- 6. SPECS TABLE --- */
.specs-section { padding: 60px 0; background-color: #f4f7f6; }
.table-responsive { overflow-x: auto; }
.specs-table { width: 100%; max-width: 800px; margin: 30px auto 0; border-collapse: collapse; background-color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-radius: 10px; overflow: hidden; }
.specs-table th, .specs-table td { padding: 15px 20px; text-align: right; border-bottom: 1px solid #eee; }
.specs-table th { background-color: #1a1a1a; color: #fff; font-weight: 700; width: 35%; }
.specs-table td { color: #555; font-weight: 600; }
.specs-table tr:nth-child(even) td { background-color: #f9f9f9; }

/* --- 7. REVIEWS --- */
.reviews-section { padding: 60px 0; background-color: #ffffff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 30px; }
.review-card { background-color: #fff; border: 1px solid #eee; border-radius: 12px; padding: 25px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.reviewer-info h4 { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; }
.review-city { font-size: 0.9rem; color: #777; }
.review-stars { color: #ffc107; font-size: 1.2rem; letter-spacing: 2px; }
.review-text { font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 15px; font-style: italic; }
.verified-badge { font-size: 0.85rem; color: #27ae60; font-weight: 700; }

/* --- 8. FAQ --- */
.faq-section { padding: 60px 0; background-color: #f9f9f9; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: #fff; margin-bottom: 15px; border-radius: 8px; border: 1px solid #e1e1e1; overflow: hidden; }
.faq-item summary { padding: 15px 20px; font-weight: 700; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #1a1a1a; transition: background-color 0.2s; }
.faq-item summary:hover { background-color: #fafafa; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: #e63946; font-weight: bold; }
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 0 20px 20px 20px; color: #555; line-height: 1.6; border-top: 1px solid #f0f0f0; }

/* --- 9. ORDER FORM --- */
.order-container { padding: 40px 15px; background-color: #e9ecef; display: flex; justify-content: center; }
.form-wrapper { background: #fff; width: 100%; max-width: 600px; padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { color: #1a1a1a; margin-bottom: 10px; font-weight: 800; }
.gift-banner { background-color: #d4edda; color: #155724; padding: 10px; border-radius: 6px; margin-top: 15px; font-weight: 700; border: 1px solid #c3e6cb; }
.step-title { font-size: 18px; margin-bottom: 15px; color: #333; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.offer-card { cursor: pointer; position: relative; }
.offer-card input[type="radio"] { display: none; }
.card-inner { border: 2px solid #eee; border-radius: 10px; padding: 10px; text-align: center; transition: 0.3s; background: #fff; height: 100%; }
.card-image img { width: 100%; border-radius: 8px; margin-bottom: 10px; }
.offer-card input:checked + .card-inner { border-color: #e63946; background-color: #fff5f5; box-shadow: 0 0 10px rgba(230, 57, 70, 0.2); }
.badge { position: absolute; top: -10px; right: -5px; background: #333; color: #fff; font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: bold; }
.badge.best-value { background: #e63946; }
.card-details h4 { font-size: 15px; margin-bottom: 5px; }
.price-box { margin: 5px 0; }
.old-price { text-decoration: line-through; color: #999; font-size: 13px; display: block;}
.new-price { color: #e63946; font-weight: 800; font-size: 18px; }
.gift-text { font-size: 12px; color: #28a745; font-weight: 700; }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 700; color: #444; }
.input-group input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-family: 'Cairo', sans-serif; font-size: 16px; }
.input-group input:focus { outline: none; border-color: #e63946; box-shadow: 0 0 5px rgba(230, 57, 70, 0.2); }
.btn-primary, .btn-submit { background-color: #e63946; color: #fff; text-decoration: none; padding: 12px 25px; border-radius: 6px; font-weight: 700; font-size: 16px; transition: 0.3s; border: none; cursor: pointer; display: inline-block; }
.btn-hero { padding: 15px 40px; font-size: 18px; border: 2px solid #e63946; }
.btn-primary:hover, .btn-submit:hover { background-color: #d62839; transform: translateY(-2px); }
.btn-submit { width: 100%; padding: 15px; font-size: 18px; margin-top: 10px; animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

/* --- 10. MINIMALIST FOOTER --- */
.site-footer {
    background-color: #121212;
    color: #ffffff;
    padding: 60px 0 40px;
    font-size: 15px;
    border-top: 1px solid #eaeaea;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

/* Logo Styling — SVG is brand blue; invert only on dark footers */
.footer-logo {
    height: auto;
    width: auto;
    max-width: 140px;
    display: block;
    filter: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.site-footer .footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-logo:hover {
    opacity: 1;
}

/* Navigation Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}

.footer-menu a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #e63946;
    transform: translateY(-2px);
}

/* Contact Details */
.footer-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #777;
    font-size: 14px;
}

.footer-contact .separator {
    color: #333;
    font-size: 10px;
}

/* Copyright Area */
.footer-copyright {
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid #222;
    width: 100%;
    max-width: 400px;
}

.footer-copyright p {
    color: #444;
    font-size: 13px;
    margin: 0;
}

/* --- 11. HOMEPAGE PRODUCT GRID --- */
.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.products-grid {
    display: grid;
    /* Responsive Grid: 1 col on mobile, 3 on desktop */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- RECOMMENDED PRODUCTS SECTION (Product Pages) --- */
.recommended-products {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.recommended-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .recommended-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .recommended-products {
        padding: 40px 0;
    }
    .recommended-products .product-info {
        padding: 15px;
    }
    .recommended-products .product-info h3 {
        font-size: 1rem;
    }
    .recommended-products .specs-preview {
        font-size: 0.8rem;
        padding: 6px;
    }
    .recommended-products .product-price {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    .recommended-products .btn-view {
        padding: 10px;
        font-size: 14px;
    }
    .recommended-products .product-tag {
        font-size: 10px;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
}

.product-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #e63946;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

@media (max-width: 768px) {
    .product-tag {
        font-size: 10px;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
}

.product-tag.best-seller { background-color: #e63946; } /* Red */
.product-tag.new-arrival { background-color: #2a9d8f; } /* Teal */
.product-tag.popular { background-color: #f4a261; }     /* Orange */

/* --- ENHANCED 1:1 PRODUCT IMAGE --- */
.product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the square neatly */
    transition: transform 0.5s ease;
}

.product-item:hover .product-thumb img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.specs-preview {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    background: #f4f4f4;
    padding: 8px;
    border-radius: 6px;
}

.product-price {
    font-size: 1.4rem;
    color: #e63946;
    font-weight: 800;
    margin-bottom: 20px;
}

.btn-view {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-view:hover {
    background-color: #e63946;
}

/* --- 12. BENEFITS SECTION (Homepage) --- */
.benefits-section {
    padding: 80px 0;
    background-color: #f4f7f6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    font-size: 1rem;
}

/* --- 13. HELP BANNER (CTA) --- */
.help-banner {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.help-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.help-content p {
    color: #ccc;
    margin-bottom: 25px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* --- PERFORMANCE OPTIMIZATIONS --- */
/* Lazy loading image styles */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}
img[loading="lazy"].loaded {
    opacity: 1;
}

/* Optimize font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better touch interactions on mobile */
* {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Optimize animations */
.product-item,
.benefit-card,
.review-card {
    will-change: transform;
}

/* Prevent layout shift on images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- STICKY WHATSAPP (image icon, bottom-left) --- */
.whatsapp-float {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 2100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-decoration: none;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
}
.whatsapp-float img {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
}
/* --- RESPONSIVE MEDIA QUERIES (GLOBAL) --- */
@media (max-width: 768px) {
    /* Smooth scroll offset for sticky header */
    html {
        scroll-padding-top: 80px;
    }

    /* Mobile Header - Sticky */
    .site-header {
        padding: 0 4%;
        height: 70px;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        background-color: #fff;
    }
    .header-logo img {
        max-height: 45px;
    }
    .header-cta .btn-primary {
        padding: 10px 18px;
        font-size: 14px;
        min-height: 44px; /* Touch-friendly */
        min-width: 100px;
    }

    /* Mobile Hero */
    .hero-section {
        min-height: 450px;
    }
    .hero-content {
        padding: 30px 20px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .whatsapp-float {
        bottom: 16px;
        left: 16px;
    }
    .btn-hero {
        padding: 14px 30px;
        font-size: 16px;
        min-height: 48px; /* Touch-friendly */
    }

    /* Mobile Products - Improved Spacing */
    .products-section {
        padding: 40px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .product-info {
        padding: 20px;
    }
    .product-info h3 {
        font-size: 1.1rem;
    }
    .btn-view {
        padding: 14px;
        font-size: 15px;
        min-height: 48px; /* Touch-friendly */
    }

    /* Mobile Benefits - Improved Spacing */
    .benefits-section {
        padding: 40px 0;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .benefit-card {
        padding: 25px 20px;
    }
    .benefit-card h3 {
        font-size: 1.2rem;
    }

    /* Mobile Forms */
    .order-container {
        padding: 30px 10px;
    }
    .form-wrapper {
        padding: 25px 20px;
    }
    .input-group input {
        padding: 14px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px; /* Touch-friendly */
        -webkit-appearance: none;
        border-radius: 8px;
    }
    .btn-submit {
        padding: 16px;
        font-size: 17px;
        min-height: 52px; /* Touch-friendly */
    }
    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        animation: none;
    }
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .card-inner {
        padding: 12px;
        min-height: 120px; /* Better touch target */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Mobile Footer - Improved Spacing */
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
    .footer-menu a {
        padding: 8px 0;
        min-height: 44px; /* Touch-friendly */
        display: inline-block;
    }
    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }
    .footer-contact .separator {
        display: none;
    }
    .site-footer {
        padding: 40px 0 25px;
    }
    .footer-wrapper {
        gap: 25px;
    }
    .footer-copyright {
        margin-top: 10px;
        padding-top: 20px;
    }

    /* Mobile Help Banner */
    .help-banner {
        padding: 40px 0;
    }
    .help-content h3 {
        font-size: 1.3rem;
    }
    .btn-whatsapp {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Features - Improved Spacing */
    .features-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    .feature-row {
        margin-bottom: 40px;
    }
    .feature-text h3 {
        font-size: 1.3rem;
    }

    /* Mobile Specs Table - Better Scrolling */
    .specs-section {
        padding: 40px 0;
    }
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }
    .specs-table {
        font-size: 14px;
        min-width: 500px;
    }
    .specs-table th,
    .specs-table td {
        padding: 12px 10px;
    }
    .specs-table th {
        width: 40%;
        font-size: 13px;
    }

    /* Mobile Reviews - Improved Spacing */
    .reviews-section {
        padding: 40px 0;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .review-card {
        padding: 20px;
    }

    /* Mobile FAQ - Improved Spacing */
    .faq-section {
        padding: 40px 0;
    }
    .faq-item summary {
        padding: 14px 18px;
        font-size: 1rem;
        min-height: 50px; /* Touch-friendly */
    }
    .faq-content {
        padding: 0 18px 18px 18px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .announcement-bar {
        padding: 6px 8px;
        font-size: 11px;
        line-height: 1.4;
    }
    .hero-section {
        min-height: 400px;
    }
    .hero-content {
        padding: 20px 15px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .product-price {
        font-size: 1.3rem;
    }
    
    /* Better Image Aspect Ratios */
    .product-thumb img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .card-image img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    
    /* Improved Spacing for Extra Small */
    .container {
        width: 95%;
    }
    .products-section,
    .benefits-section,
    .features-section,
    .specs-section,
    .reviews-section,
    .faq-section {
        padding: 35px 0;
    }
    .card-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
    .card-image {
        width: 100%;
        margin-left: 0;
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    .card-image img {
        margin-bottom: 0;
    }
    .card-details {
        width: 100%;
        flex: 1;
    }
    .card-details h4 {
        font-size: 14px;
    }
    .new-price {
        font-size: 16px;
    }
    .old-price {
        font-size: 12px;
    }
    .gift-text {
        font-size: 11px;
    }
    .specs-table th {
        width: 45%;
        font-size: 12px;
        padding: 10px 8px;
    }
    .specs-table td {
        font-size: 13px;
        padding: 10px 8px;
    }
}

@media (min-width: 768px) {
    .site-header { padding: 0 8%; height: 90px; }
    .hero-section { height: 650px; }
    .hero-content h1 { font-size: 3.5rem; }
    .features-section { padding: 80px 0; }
    
    .feature-row { flex-direction: row; justify-content: space-between; gap: 50px; margin-bottom: 100px; }
    .feature-row:nth-child(even) { flex-direction: row-reverse; }
    .feature-text, .feature-image { flex: 1; }
    .feature-text h3 { font-size: 1.8rem; }
    
}