/* ===== BRAND COLOR SYSTEM =====
   Quiet-luxury palette: warm ivory dominates, cocoa brown carries
   structure/text, champagne gold + terracotta are used sparingly as accents. */
:root {
    --ivory: #F8F5EF;
    --white: #FFFFFF;
    --cocoa: #5B4636;
    --cocoa-dark: #46362A;
    --gold: #C8A96A;
    --terracotta: #C97A5A;
    --terracotta-dark: #B4643F;
    --text-muted: #8A7C6F;
    --text-on-dark-muted: #CFC3B6;
    --border-light: #ECE3D8;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--ivory);
    color: var(--cocoa);
}

/* ===== SITE HEADER / MASTHEAD ===== */
.site-header {
    background-color: var(--ivory);
    border-bottom: 2px solid var(--gold);
}

.brand-bar {
    background-color: var(--ivory);
    display: flex;
    justify-content: center;
    padding: 34px 20px 14px;
}

.logo {
    display: inline-block;
}

.logo img {
    height: 260px;
    object-fit: contain;
}

nav {
    background-color: var(--ivory);
    padding: 14px 40px 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--cocoa);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--terracotta);
}

/* ===== NAV DROPDOWN (Templates quick-shop) ===== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 30px rgba(91,70,54,0.12);
    padding: 10px 0;
    min-width: 180px;
    z-index: 50;
}

.has-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-item {
    display: block;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--cocoa);
}

.dropdown-item:hover {
    color: var(--terracotta);
    background-color: var(--ivory);
}

/* ===== SECTION EYEBROWS ===== */
.section-eyebrow {
    display: block;
    color: var(--terracotta);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ===== HERO ===== */
.hero {
    /* Swap in a real photo when ready:
       background-image: linear-gradient(rgba(248,245,239,0.4), rgba(248,245,239,0.4)), url('images/hero-photo.jpg');
       background-size: cover; background-position: center; */
    background-color: var(--white);
    color: var(--cocoa);
    text-align: center;
    padding: 160px 20px 140px;
}

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--cocoa);
}

.hero p {
    font-size: 17px;
    margin-bottom: 44px;
    color: var(--text-muted);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    background-color: var(--terracotta);
    color: white;
    padding: 15px 42px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--cocoa);
    color: white;
}

.featured {
    padding: 70px 40px;
    text-align: center;
}

.featured h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--cocoa);
    font-weight: 600;
}

.template-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.template-card {
    background-color: var(--white);
    border-radius: 4px;
    padding: 20px;
    width: 300px;
    border: 1px solid var(--border-light);
    box-shadow: none;
    transition: transform 0.3s, border-color 0.3s;
    text-align: left;
}

.template-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.template-card img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 15px;
}

.template-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--cocoa);
    font-weight: 600;
}

.template-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.template-card span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 15px;
}

.btn-card {
    display: block;
    background-color: var(--cocoa);
    color: white;
    padding: 12px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-card:hover {
    background-color: var(--terracotta);
    color: white;
}

/* ===== HORIZONTAL SCROLL ROWS (Best Sellers etc) ===== */
.scroll-row-section {
    padding: 60px 40px 20px;
}

.scroll-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.scroll-row-header h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--cocoa);
}

.scroll-row-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.scroll-row-link:hover {
    color: var(--cocoa);
}

.scroll-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
}

.scroll-row .scroll-card {
    scroll-snap-align: start;
    flex: 0 0 260px;
    background-color: var(--white);
    border-radius: 4px;
    padding: 18px;
    border: 1px solid var(--border-light);
    box-shadow: none;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
}

.scroll-row .scroll-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
}

.scroll-card img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 12px;
}

.scroll-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--cocoa);
    font-weight: 600;
}

.scroll-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.scroll-card span {
    display: block;
    font-size: 19px;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 12px;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background-color: var(--cocoa);
    padding: 90px 20px;
    text-align: center;
    margin-top: 40px;
}

.promo-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.promo-content h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-content p {
    color: var(--text-on-dark-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.btn-gold {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    padding: 14px 38px;
    border-radius: 2px;
    border: 1px solid var(--gold);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--cocoa);
}

/* ===== SHOP BY CATEGORY ===== */
.category-section {
    padding: 80px 40px;
    text-align: center;
}

.category-section h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 44px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-tile {
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px 15px;
    text-decoration: none;
    border: 1px solid var(--border-light);
    box-shadow: none;
    transition: transform 0.3s, border-color 0.3s;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.category-tile h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--cocoa);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background-color: var(--ivory);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--terracotta);
}

.stat p {
    font-size: 13px;
    color: var(--cocoa);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 40px;
    text-align: center;
}

.testimonials-section h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 44px;
}

.testimonials-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 4px;
    padding: 32px;
    width: 320px;
    text-align: left;
    border: 1px solid var(--border-light);
    box-shadow: none;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    color: var(--cocoa);
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    /* Swap in a real lifestyle photo when ready:
       background-image: linear-gradient(rgba(91,70,54,0.75), rgba(91,70,54,0.75)), url('images/newsletter-photo.jpg');
       background-size: cover; background-position: center; */
    background-color: var(--cocoa-dark);
    text-align: center;
    padding: 90px 20px;
}

.newsletter-eyebrow {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.newsletter-section h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 34px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: var(--text-on-dark-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 14px 20px;
    border-radius: 2px;
    border: 1px solid var(--text-on-dark-muted);
    background-color: transparent;
    color: white;
    font-size: 14px;
    width: 300px;
    max-width: 80vw;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-on-dark-muted);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--cocoa);
    color: white;
    padding: 60px 40px 30px;
    margin-top: 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.footer-brand {
    max-width: 250px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-on-dark-muted);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-on-dark-muted);
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--terracotta);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-instagram {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: var(--text-on-dark-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background-color: var(--cocoa);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: var(--text-on-dark-muted);
}

/* ===== SEARCH BAR ===== */
.search-section {
    padding: 30px 40px 10px;
    text-align: center;
}

.search-section input {
    width: 100%;
    max-width: 500px;
    padding: 14px 20px;
    border-radius: 2px;
    border: 1px solid var(--cocoa);
    font-size: 15px;
    outline: none;
    color: var(--cocoa);
    background-color: var(--white);
}

.search-section input:focus {
    border-color: var(--terracotta);
}

/* ===== FILTER BUTTONS ===== */
.filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 2px;
    border: 1px solid var(--cocoa);
    background-color: var(--white);
    color: var(--cocoa);
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--cocoa);
    color: white;
}

.filter-btn.active {
    background-color: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}

/* ===== TEMPLATES SECTION ===== */
.templates-section {
    padding: 30px 40px 60px;
}
/* ===== SINGLE TEMPLATE PAGE ===== */
.template-detail {
    display: flex;
    gap: 50px;
    padding: 60px 80px;
    align-items: flex-start;
    background-color: var(--ivory);
}

.template-preview {
    flex: 1;
}

.template-preview img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(91,70,54,0.10);
}

.template-info {
    flex: 1;
}

.template-badge {
    background-color: var(--terracotta);
    color: white;
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.template-info h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 15px;
}

.template-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 15px;
    color: var(--cocoa);
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.template-price {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 25px;
}

.btn-buy {
    display: block;
    width: 100%;
    background-color: var(--terracotta);
    color: white;
    padding: 18px;
    border-radius: 2px;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.btn-buy:hover {
    background-color: var(--cocoa);
    color: white;
}

.btn-preview {
    display: block;
    width: 100%;
    background-color: var(--white);
    color: var(--cocoa);
    padding: 16px;
    border-radius: 2px;
    border: 1px solid var(--cocoa);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-preview:hover {
    background-color: var(--cocoa);
    color: white;
}

/* ===== ABOUT: STORY SECTION ===== */
.story-section {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 90px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 20px;
}

.story-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ===== ABOUT: VALUES SECTION ===== */
.values-section {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--white);
}

.values-section h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 44px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: left;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    padding: 90px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrap,
.contact-info-wrap {
    flex: 1;
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-hidden {
    display: none;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border-radius: 2px;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    color: var(--cocoa);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--terracotta);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
}

.contact-method {
    margin-bottom: 26px;
}

.contact-method h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 6px;
}

.contact-method p,
.contact-method a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--terracotta);
}

.contact-social {
    display: flex;
    gap: 18px;
    margin-top: 4px;
}

.contact-social a {
    font-size: 14px;
    font-weight: 600;
    color: var(--cocoa);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2px;
}

.contact-social a:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}

/* ===== RELATED TEMPLATES ===== */
.related {
    padding: 70px 80px;
    background-color: var(--white);
    text-align: center;
}

.related h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--cocoa);
    margin-bottom: 40px;
}
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    /* NAVIGATION */
    .brand-bar {
        padding: 20px 20px 8px;
    }

    .logo img {
        height: 140px;
    }

    nav {
        padding: 14px 20px 20px;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Dropdown is a hover-only enhancement — hide on touch/mobile widths */
    .dropdown-menu {
        display: none !important;
    }

    /* HERO */
    .hero {
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 28px;
    }

    /* FEATURED TEMPLATES */
    .featured {
        padding: 40px 20px;
    }

    .featured h2 {
        font-size: 26px;
    }

    .template-grid {
        flex-direction: column;
        align-items: center;
    }

    .template-card {
        width: 100%;
        max-width: 380px;
    }

    /* TEMPLATES PAGE */
    .search-section {
        padding: 20px;
    }

    .filters {
        padding: 15px 20px;
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .templates-section {
        padding: 20px;
    }

    /* SINGLE TEMPLATE PAGE */
    .template-detail {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .template-info h1 {
        font-size: 26px;
    }

    .template-price {
        font-size: 30px;
    }

    /* RELATED TEMPLATES */
    .related {
        padding: 40px 20px;
    }

    .related h2 {
        font-size: 22px;
    }

    /* PAGE HEADER */
    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    /* FOOTER */
    footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* HORIZONTAL SCROLL ROWS */
    .scroll-row-section {
        padding: 40px 20px 10px;
    }

    .scroll-row-header h2 {
        font-size: 22px;
    }

    .scroll-row .scroll-card {
        flex: 0 0 220px;
    }

    /* PROMO BANNER */
    .promo-banner {
        padding: 50px 20px;
    }

    .promo-content h2 {
        font-size: 24px;
    }

    /* CATEGORY GRID */
    .category-section {
        padding: 40px 20px;
    }

    .category-section h2 {
        font-size: 24px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* STATS BAR */
    .stats-bar {
        gap: 40px;
        padding: 35px 20px;
    }

    .stat h3 {
        font-size: 26px;
    }

    /* TESTIMONIALS */
    .testimonials-section {
        padding: 40px 20px;
    }

    .testimonials-section h2 {
        font-size: 24px;
    }

    .testimonial-card {
        width: 100%;
    }

    /* NEWSLETTER */
    .newsletter-section {
        padding: 45px 20px;
    }

    .newsletter-section h2 {
        font-size: 22px;
    }

    .newsletter-form input {
        width: 100%;
    }

    /* ABOUT: STORY SECTION */
    .story-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .story-content h2 {
        font-size: 24px;
    }

    /* ABOUT: VALUES SECTION */
    .values-section {
        padding: 40px 20px;
    }

    .values-section h2 {
        font-size: 24px;
    }

    /* CONTACT PAGE */
    .contact-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .contact-form-wrap h2,
    .contact-info-wrap h2 {
        font-size: 24px;
    }
}
