/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #8B6914;
    --color-primary-dark: #6B4F0A;
    --color-text: #2C2C2C;
    --color-text-light: #5A5A5A;
    --color-background: #FEFDFB;
    --color-accent: #C4A05A;
    --color-border: #E5DDD0;
    --color-white: #FFFFFF;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --max-content-width: 720px;
    --spacing-unit: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.96);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookie-accept {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-accept:hover {
    background-color: var(--color-primary-dark);
}

.cookie-reject {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-serif);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Editorial Container (Main Layout) */
.editorial-container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Article Hero */
.article-hero {
    margin-bottom: 3.5rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Article Intro */
.article-intro {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.article-intro p {
    margin-bottom: 1.5rem;
}

/* Inline CTA Box */
.inline-cta-box {
    background-color: #F9F7F4;
    border-left: 4px solid var(--color-primary);
    padding: 1.8rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.inline-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.cta-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--color-primary-dark);
}

/* Story Section */
.story-section,
.insight-section,
.process-section,
.trust-section,
.philosophy-section {
    margin-bottom: 3.5rem;
}

.story-section h2,
.insight-section h3,
.process-section h2,
.trust-section h2,
.philosophy-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-section p,
.insight-section p,
.process-section p,
.trust-section p,
.philosophy-section p {
    margin-bottom: 1.5rem;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 2rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

/* Insight List */
.insight-list {
    list-style: none;
    margin: 2rem 0;
}

.insight-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.insight-list li:last-child {
    border-bottom: none;
}

.insight-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 3.5rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-text);
    position: relative;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: var(--color-text-light);
    font-family: var(--font-sans);
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-sans);
    flex-shrink: 0;
    width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Services Overview */
.services-overview {
    margin: 4rem 0;
}

.services-overview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-align: center;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-sans);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.9rem 2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #F9F7F4;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.selected-service-display strong {
    color: var(--color-primary);
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.submit-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 105, 20, 0.3);
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #F9F7F4;
    border-radius: 8px;
}

.final-cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.final-cta-section p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.3);
}

/* Sustainability Note */
.sustainability-note {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #EEF3E8;
    border-radius: 6px;
    border-left: 4px solid #7A9B5F;
}

.sustainability-note h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.sustainability-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Footer */
.main-footer {
    background-color: #2C2C2C;
    color: #CCCCCC;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #CCCCCC;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #999999;
}

/* Services Detailed Page */
.services-detailed {
    margin: 3rem 0;
}

.service-detail-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h3 {
    font-size: 1.8rem;
    color: var(--color-text);
    font-weight: 700;
}

.service-detail-price {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    font-family: var(--font-sans);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.service-description h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--color-text);
}

.service-description ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.service-description ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.service-description p {
    margin-bottom: 1rem;
}

/* Pricing Notes */
.pricing-notes {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #F9F7F4;
    border-radius: 8px;
}

.pricing-notes h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.pricing-notes h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--color-text);
}

.pricing-notes ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.pricing-notes li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.contact-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.visit-section,
.faq-section,
.location-section {
    margin: 3rem 0;
}

.visit-section h2,
.faq-section h2,
.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.faq-item p {
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Thanks Page */
.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #7A9B5F;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

#service-confirmation {
    color: var(--color-primary);
    font-weight: 600;
}

.next-steps-section {
    margin: 3rem auto;
    max-width: 600px;
    text-align: left;
}

.next-steps-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    text-align: center;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.step-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.thanks-contact {
    margin: 2rem 0;
}

.thanks-contact p {
    font-size: 1rem;
    color: var(--color-text-light);
}

.thanks-contact a {
    color: var(--color-primary);
    text-decoration: underline;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Legal Pages */
.legal-page .article-hero {
    margin-bottom: 2rem;
}

.legal-section {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #F9F7F4;
    border-radius: 6px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--color-text);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--color-text);
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--color-text);
}

.legal-section p {
    margin-bottom: 1.2rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-primary-dark);
}

.legal-update {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.cookies-table thead {
    background-color: #F9F7F4;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-border);
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cookies-table tbody tr:last-child td {
    border-bottom: none;
}

/* Team Section */
.team-section {
    margin: 3rem 0;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.team-member {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.team-member:last-child {
    border-bottom: none;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--color-text);
}

.role {
    font-size: 1rem;
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 0.8rem;
    display: block;
}

.team-member p {
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Philosophy List */
.philosophy-list {
    list-style: none;
    margin: 2rem 0;
}

.philosophy-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.philosophy-list li:last-child {
    border-bottom: none;
}

.philosophy-list li::before {
    content: "→";
    position: absolute;
    left: 0.3rem;
    color: var(--color-primary);
    font-size: 1.3rem;
}

/* Values Section */
.values-section {
    margin: 3rem 0;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.value-item p {
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Workspace Section */
.workspace-section {
    margin: 3rem 0;
}

.workspace-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

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

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    body {
        font-size: 16px;
    }

    .cookie-content {
        padding: 0 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .inline-cta-box {
        padding: 1.5rem;
    }

    .final-cta-section {
        padding: 2rem 1.5rem;
    }
}
