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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
    overflow-x: hidden;
}

a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b6914;
}

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

/* Editorial Navigation */
.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

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

.brand-logo {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2c2c2c;
}

/* Editorial Content - Main Article Container */
.editorial-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.article-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #5a5a5a;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    margin-top: 2rem;
    border-radius: 2px;
}

/* Typography - Editorial Style */
.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
}

.editorial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.editorial-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.editorial-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 2rem 0 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

.editorial-content h4 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    color: #3a3a3a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
section {
    margin-bottom: 4rem;
}

.story-intro,
.problem-section,
.insight-section,
.trust-building,
.story-continuation,
.benefit-reveal,
.urgency-section {
    margin-bottom: 4rem;
}

/* Inline Images */
.inline-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 2px;
}

.full-width-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 2px;
}

.image-caption {
    font-size: 0.9rem;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 0.5rem;
    text-align: center;
}

.visual-break {
    margin: 3rem 0;
}

/* Lists */
.editorial-content ul,
.editorial-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.editorial-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #3a3a3a;
}

.story-list li,
.offering-list li,
.process-list li {
    margin-bottom: 1rem;
}

.story-list li strong,
.offering-list li strong {
    color: #1a1a1a;
}

/* Blockquotes - Testimonials */
blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background-color: #f9f9f7;
    border-left: 4px solid #b8860b;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #3a3a3a;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #7a7a7a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.testimonial-inline {
    margin: 2.5rem 0;
}

.philosophy-quote {
    background-color: #faf8f3;
    border-left-color: #8b6914;
    font-size: 1.25rem;
    padding: 2rem 2.5rem;
}

.testimonial-box {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #b8860b;
}

/* CTAs - Editorial Style */
.inline-cta {
    margin: 2rem 0;
    text-align: left;
}

.text-link {
    font-size: 1.1rem;
    color: #b8860b;
    font-weight: 600;
    border-bottom: 2px solid #b8860b;
    padding-bottom: 2px;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #8b6914;
    border-bottom-color: #8b6914;
}

.cta-button-inline,
.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #b8860b;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-button-inline {
    margin-top: 1rem;
}

.cta-button-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button-inline:hover,
.cta-button:hover,
.cta-button-large:hover {
    background-color: #8b6914;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-button {
    display: block;
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sticky-button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Benefit Grid */
.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 0;
}

/* Services Section */
.services-reveal {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e5e5e5;
}

.services-intro {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #b8860b;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.price {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.8rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background-color: #1a1a1a;
}

/* Final Story Section */
.final-story {
    margin: 4rem 0;
}

.final-cta-section {
    background-color: #f9f9f7;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.final-cta-section h3 {
    font-size: 1.6rem;
    margin: 0 0 1rem;
    color: #1a1a1a;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

/* Form Styles - Editorial */
.order-section {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2.5rem 2rem;
    margin: 3rem 0;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #2c2c2c;
    background-color: #fafaf8;
    border: 1px solid #d5d5d5;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="date"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    background-color: #ffffff;
}

.form-group input[readonly] {
    background-color: #f0f0ee;
    cursor: not-allowed;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #b8860b;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #8b6914;
}

/* Footer - Editorial Style */
.editorial-footer {
    background-color: #2c2c2c;
    color: #b5b5b5;
    padding: 3rem 1.5rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #b5b5b5;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-section a:hover {
    color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: #b8860b;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #b8860b;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #8b6914;
}

.cookie-reject {
    background-color: transparent;
    color: #b5b5b5;
    border: 1px solid #5a5a5a;
}

.cookie-reject:hover {
    background-color: #3a3a3a;
    color: #ffffff;
}

/* Page-Specific Styles */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e5e5;
}

.page-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    font-style: italic;
    font-weight: 300;
}

.update-date {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-top: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* About Page */
.about-intro {
    margin-bottom: 4rem;
}

.timeline-section {
    margin: 4rem 0;
}

.timeline-item {
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 3px solid #b8860b;
}

.timeline-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.team-section {
    margin: 4rem 0;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
}

.role {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #b8860b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.values-section {
    margin: 4rem 0;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.cta-section {
    background-color: #f9f9f7;
    padding: 2.5rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

/* Services Page */
.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-of-type {
    border-bottom: 2px solid #e5e5e5;
}

.service-content {
    margin-top: 2rem;
}

.service-specs,
.subscription-info,
.custom-process,
.custom-examples {
    margin: 2rem 0;
}

.service-specs h4 {
    margin-top: 2rem;
}

.dessert-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dessert-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 1.5rem;
}

.dessert-item h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    color: #2c2c2c;
}

.dessert-item p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.dessert-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #b8860b;
    display: block;
}

.price-info {
    background-color: #f9f9f7;
    padding: 1rem 1.5rem;
    margin: 2rem 0 1.5rem;
    border-left: 4px solid #b8860b;
}

.delivery-info {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2.5rem 2rem;
    margin: 4rem 0;
}

.delivery-details h3 {
    margin-top: 2rem;
}

.delivery-details h3:first-of-type {
    margin-top: 0;
}

.order-cta {
    text-align: center;
    margin: 4rem 0;
}

/* Contact Page */
.contact-intro {
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-block {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2.5rem 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.95rem;
    color: #7a7a7a;
    font-style: italic;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

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

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.visit-section,
.map-section {
    margin: 4rem 0;
}

.directions h3 {
    margin-top: 2rem;
}

.order-redirect {
    background-color: #f9f9f7;
    padding: 2.5rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

/* Thanks Page */
.thanks-page {
    text-align: left;
}

.thanks-header {
    text-align: center;
    margin-bottom: 3rem;
}

.thanks-content {
    margin-top: 2rem;
}

.next-steps {
    margin: 3rem 0;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f7;
    border-left: 4px solid #b8860b;
}

.step h3 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
    color: #2c2c2c;
}

.step p {
    font-size: 1rem;
    margin-bottom: 0;
}

.service-selected {
    background-color: #ffffff;
    border: 2px solid #b8860b;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.service-selected h2 {
    margin-top: 0;
}

.additional-info {
    margin: 3rem 0;
}

.thanks-quote {
    margin: 3rem 0;
    background-color: #faf8f3;
    border-left-color: #8b6914;
    font-size: 1.2rem;
}

.while-you-wait {
    margin: 3rem 0;
}

.link-suggestions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.suggestion-link {
    padding: 1rem 1.5rem;
    background-color: #f9f9f7;
    border: 1px solid #e5e5e5;
    color: #b8860b;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.suggestion-link:hover {
    background-color: #ffffff;
    border-color: #b8860b;
}

.social-proof {
    margin: 4rem 0;
}

.return-home {
    text-align: center;
    margin: 4rem 0 2rem;
}

/* Legal Pages */
.legal-page .legal-content {
    margin-top: 2rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0;
}

.legal-content li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.authority-contact {
    background-color: #f9f9f7;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #b8860b;
}

.authority-contact p {
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.cookie-table thead {
    background-color: #2c2c2c;
    color: #ffffff;
}

.cookie-table th {
    padding: 0.75rem;
    text-align: left;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-table tbody tr:hover {
    background-color: #fafaf8;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Responsive Design */
@media (min-width: 768px) {
    .article-hero h1 {
        font-size: 3rem;
    }

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

    .lead-text {
        font-size: 1.4rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .benefit-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
        border-bottom: none;
        border-right: 1px solid #e5e5e5;
        padding: 0 2rem 0 0;
    }

    .benefit-item:nth-child(2n) {
        border-right: none;
        padding: 0 0 0 2rem;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .contact-info {
        flex-direction: row;
    }

    .info-block {
        flex: 1;
    }

    .nav-container {
        flex-wrap: nowrap;
    }
}

@media (max-width: 767px) {
    .article-hero h1 {
        font-size: 2rem;
    }

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

    .editorial-content h2 {
        font-size: 1.5rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .editorial-nav,
    .sticky-cta,
    .cookie-banner,
    .cta-button,
    .cta-button-inline,
    .cta-button-large,
    .select-service,
    .submit-button {
        display: none;
    }

    body {
        background-color: #ffffff;
    }

    .editorial-content {
        max-width: 100%;
    }
}