/* Peace Blooming — Main Stylesheet */

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

:root {
    --green-dark: #2c3e32;
    --cream: #f6f4ed;
    --gold: #c9a86c;
    --sage-soft: #dce8e0;
    --text: #3d3d3d;
    --muted: #6b6b6b;
    --white: #ffffff;
    --border: #e8e4d9;

    --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

img, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

picture img {
    width: 100%;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1.5rem;
    z-index: 200;
    background-color: var(--green-dark);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1.5rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--green-dark);
    font-size: 1.35rem;
    font-weight: 600;
    font-family: var(--font-serif);
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--green-dark);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--green-dark);
}

.nav-cta {
    flex-shrink: 0;
    padding: 0.6rem 1.1rem;
    font-size: 0.92rem;
    min-height: 40px;
}

/* Sticky bottom CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 99;
    transition: transform 0.3s ease;
}

.sticky-cta .btn {
    flex: 1;
    max-width: 220px;
    min-height: 48px;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
}

.sticky-cta.is-hidden {
    transform: translateY(110%);
}

/* Main Content */
main {
    min-height: 70vh;
    padding: 0;
}

section {
    padding: 3.5rem 2rem;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--green-dark);
    margin: 1.5rem 0 1rem 0;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.25rem;
    margin-top: 0;
}

h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0.75rem 0;
    line-height: 1.7;
    color: var(--text);
}

a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d2a20;
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    background: var(--cream);
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-top: 0;
    color: var(--green-dark);
}

.hero-content p {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    line-height: 1.8;
    color: var(--text);
}

.hero-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 62, 50, 0.12);
    display: block;
}

.hero-image-wrapper {
    background-color: var(--sage-soft);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero .tagline {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* Page Hero (secondary pages) */
.page-hero {
    background: var(--green-dark);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    border: none;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-sans);
    line-height: 1.2;
    min-height: 48px;
}

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
}

.btn-primary:hover {
    background-color: #1d2a20;
    border-color: #1d2a20;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 62, 50, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
}

.btn-secondary:hover {
    background-color: var(--green-dark);
    color: var(--white);
}

.btn-accent {
    background-color: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}

.btn-accent:hover {
    background-color: #b89a5e;
    border-color: #b89a5e;
    color: var(--green-dark);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* Trust Line */
.trust-line {
    background-color: var(--sage-soft);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--green-dark);
}

.trust-line strong {
    color: var(--green-dark);
    font-weight: 600;
}

/* Story Section */
.story {
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.story-photo img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 62, 50, 0.12);
    display: block;
}

.story-photo .caption {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(44, 62, 50, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 50, 0.1);
}

.service-card h3 {
    color: var(--green-dark);
    margin-top: 0;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sage-soft);
    border-radius: 12px;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

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

/* Steps */
.steps, .steps-detailed {
    list-style: none;
    counter-reset: step-counter;
}

.steps li, .steps-detailed li {
    counter-increment: step-counter;
    margin: 1.5rem 0;
    padding-left: 3rem;
    position: relative;
}

.steps li:before, .steps-detailed li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: -2px;
    background-color: var(--green-dark);
    color: var(--white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-sans);
}

.steps-detailed li h2 {
    margin-top: 0;
    border: none;
    padding: 0;
}

/* Tables */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(44, 62, 50, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background-color: var(--green-dark);
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-sans);
}

.pricing-table tr:hover {
    background-color: var(--cream);
}

/* Pricing Preview */
.pricing-preview {
    background-color: var(--sage-soft);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(44, 62, 50, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 50, 0.1);
}

.pricing-card .price {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(44, 62, 50, 0.08);
}

.pricing-card.featured .price {
    color: var(--green-dark);
}

.pricing-card em {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

/* FAQ */
.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border-left: 4px solid var(--green-dark);
    box-shadow: 0 2px 4px rgba(44, 62, 50, 0.05);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(44, 62, 50, 0.08);
}

.faq-item h3 {
    margin-top: 0;
    color: var(--green-dark);
}

.faq-items {
    display: grid;
    gap: 1.5rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 62, 50, 0.05);
    border: 1px solid var(--border);
}

.form-success {
    background-color: var(--sage-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-success h3 {
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.form-success:not([hidden]) + .contact-form {
    display: none;
}

.form-group {
    margin: 1.5rem 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--green-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    background-color: var(--white);
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: none;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(44, 62, 50, 0.1);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    box-shadow: none;
}

.form-hint {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #c44;
}

.newsletter-form.is-submitting {
    opacity: 0.7;
    pointer-events: none;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.city-section {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 62, 50, 0.05);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.city-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 50, 0.1);
}

.city-section h3 {
    color: var(--green-dark);
    margin-top: 0;
}

.city-section ul {
    list-style: none;
}

.city-section li {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.city-section li:before {
    content: "→ ";
    color: var(--green-dark);
    margin-right: 0.5rem;
}

.region-list {
    list-style: none;
}

.region-list li {
    margin: 1rem 0;
    padding-left: 2rem;
}

.region-list li:before {
    content: "✓";
    color: var(--green-dark);
    font-weight: bold;
    margin-left: -1.5rem;
    margin-right: 1rem;
}

/* About Page */
.about-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 2rem 0;
    max-width: 800px;
}

.about-photo {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 62, 50, 0.12);
    margin: 2rem 0;
    display: block;
}

/* Cemetery page photo */
.cemetery-photo {
    margin: 2rem 0;
}

.cemetery-photo img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 62, 50, 0.12);
    display: block;
}

/* Real work section on homepage and services */
.real-work {
    padding: 4rem 0;
    background-color: var(--sage-soft);
}

.real-work h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.work-photo img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(44, 62, 50, 0.12);
}

.work-photo figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-align: center;
}

.work-text {
    font-size: 1.125rem;
}

/* Gallery page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    margin: 0;
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(44, 62, 50, 0.08);
}

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

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.trust-list {
    list-style: none;
    margin: 1.5rem 0;
}

.trust-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--green-dark);
    box-shadow: 0 2px 4px rgba(44, 62, 50, 0.05);
    transition: box-shadow 0.2s ease;
}

.trust-list li:hover {
    box-shadow: 0 6px 12px rgba(44, 62, 50, 0.08);
}

.trust-list strong {
    color: var(--green-dark);
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(44, 62, 50, 0.05);
    border: 1px solid var(--border);
}

.coming-soon-box h2 {
    color: var(--green-dark);
    border: none;
}

/* Centered text */
.centered {
    text-align: center;
}

/* Newsletter signup */
.newsletter-signup {
    background-color: var(--sage-soft);
    padding: 3rem 2rem;
    text-align: center;
}

.newsletter-signup h2 {
    color: var(--green-dark);
    border: none;
    margin-bottom: 0.5rem;
}

.newsletter-signup p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-fields {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 0.75rem;
}

.newsletter-fields input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.newsletter-fields .btn {
    white-space: nowrap;
}

.newsletter-form .privacy-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.newsletter-form .privacy-note a {
    color: var(--green-dark);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--gold);
    border: none;
    margin-top: 0;
    font-family: var(--font-serif);
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-section p, .footer-section li {
    color: rgba(255,255,255,0.9);
}

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

.footer-section li {
    margin: 0.5rem 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(246, 244, 237, 0.2);
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 72px; /* space for sticky CTA */
    }

    .nav-toggle {
        display: flex;
        order: 2;
    }

    .nav-cta {
        order: 3;
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 0.5rem 1.5rem 1.5rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero {
        padding: 2.5rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    section {
        padding: 2.5rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-photo {
        order: -1;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th, .pricing-table td {
        padding: 0.75rem;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .sticky-cta .btn {
        max-width: none;
        font-size: 0.9rem;
    }

    .newsletter-fields {
        flex-direction: column;
    }

    .newsletter-fields .btn {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo-img {
        height: 30px;
    }

    .nav-cta {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    table {
        font-size: 0.85rem;
    }

    .sticky-cta {
        padding: 0.6rem 0.75rem;
    }

    .sticky-cta .btn {
        font-size: 0.85rem;
        padding: 0.6rem 0.5rem;
    }

    .newsletter-signup {
        padding: 2rem 1.5rem;
    }
}
