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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5a3d;
    --accent-color: #d4a574;
    --text-color: #2c2c2c;
    --light-text: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --success-color: #4a7c59;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-cookie:hover {
    background: #c69563;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    z-index: 1000;
}

.nav-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.nav-menu {
    display: none;
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 30px;
    gap: 30px;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

.nav-menu a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-toggle {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 25px 80px;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 50px;
    padding-bottom: 40px;
}

.hero-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: var(--light-text);
    margin-bottom: 35px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

.hero-image {
    margin: 40px -25px 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    max-height: 450px;
}

/* Story Sections */
.story-intro,
.story-continue,
.story-section {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-style: italic;
}

.story-intro p,
.story-continue p,
.story-section p {
    margin-bottom: 20px;
}

/* Inline CTA */
.inline-cta {
    margin: 45px 0;
    text-align: center;
    padding: 25px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.cta-link {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Problem Section with Image */
.problem-section,
.insight-section,
.method-section {
    margin: 60px 0;
}

.problem-section h2,
.insight-section h2,
.method-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.content-image-left,
.content-image-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.content-image-left img,
.content-image-right img {
    width: 100%;
    border-radius: 4px;
}

.content-text p {
    margin-bottom: 20px;
}

/* Editorial Quote */
.editorial-quote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    padding: 35px 30px;
    margin: 50px 0;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    color: var(--text-color);
}

.editorial-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--light-text);
    font-family: 'Helvetica Neue', sans-serif;
}

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

.insight-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
}

.insight-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Inline Full Image */
.inline-image-full {
    margin: 60px -25px;
}

.inline-image-full img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Method Cards */
.method-card {
    margin: 35px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 3px solid var(--secondary-color);
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.method-card p {
    margin-bottom: 0;
    font-size: 17px;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 60px 0;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-item {
    padding: 25px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 14px;
    color: var(--light-text);
    font-style: normal;
}

/* CTA Block */
.cta-block {
    margin: 70px 0;
    padding: 45px 35px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    border-radius: 4px;
}

.cta-block h2 {
    color: var(--bg-white);
    font-size: 30px;
    margin-bottom: 15px;
}

.cta-block p {
    color: var(--bg-white);
    margin-bottom: 25px;
    font-size: 18px;
}

.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: #c69563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary-large {
    padding: 18px 50px;
    font-size: 20px;
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}

.benefits-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.benefit-item p {
    font-size: 17px;
    color: var(--text-color);
}

/* Services Pricing */
.services-pricing {
    margin: 60px 0;
}

.services-intro {
    font-size: 19px;
    margin-bottom: 40px;
    text-align: center;
}

.service-card {
    margin: 40px 0;
    padding: 35px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: var(--bg-light);
}

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--light-text);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Form Section */
.form-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 4px;
}

.form-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.selected-service-name {
    color: var(--accent-color);
}

.editorial-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    margin: 60px 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e3db 100%);
    border-left: 4px solid var(--accent-color);
}

.urgency-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
}

/* Final CTA */
.final-cta {
    margin: 70px 0;
    text-align: center;
    padding: 50px 20px;
    background: var(--bg-light);
    border-radius: 4px;
}

.final-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 19px;
    margin-bottom: 30px;
    color: var(--light-text);
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.faq-item p {
    font-size: 17px;
    color: var(--text-color);
}

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

.sticky-btn {
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.sticky-btn:hover {
    background: #c69563;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Page Header */
.page-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--light-text);
    font-style: italic;
}

/* Values Section */
.values-section,
.approach-section,
.results-section {
    margin: 60px 0;
}

.values-section h2,
.approach-section h2,
.results-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.value-card {
    margin: 30px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 4px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-card p {
    font-size: 17px;
}

/* Approach Steps */
.approach-steps {
    margin: 40px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-content p {
    font-size: 17px;
}

/* Contact Info */
.contact-intro {
    margin: 40px 0;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 4px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    font-size: 17px;
    margin-bottom: 10px;
}

.info-card a {
    font-weight: 600;
    word-break: break-word;
}

.info-note {
    font-size: 15px;
    color: var(--light-text);
    font-style: italic;
    margin-top: 15px;
}

.expectation-list {
    list-style: none;
    margin: 25px 0;
}

.expectation-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.expectation-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 25px;
}

.service-info {
    margin: 25px 0;
}

.selected-service {
    font-size: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 4px;
    display: inline-block;
}

.thanks-message {
    font-size: 19px;
    margin: 30px 0;
    color: var(--light-text);
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-dot {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.timeline-content h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.timeline-content p {
    font-size: 16px;
}

.preparation-section,
.meanwhile-section {
    margin: 50px 0;
    text-align: left;
}

.preparation-section h2,
.meanwhile-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.preparation-list {
    list-style: none;
    margin: 25px 0;
}

.preparation-list li {
    padding: 10px 0 10px 28px;
    position: relative;
}

.preparation-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    line-height: 1;
}

.preparation-note {
    font-size: 15px;
    color: var(--light-text);
    font-style: italic;
    margin-top: 20px;
}

.meanwhile-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.meanwhile-card {
    padding: 25px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.meanwhile-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.meanwhile-card h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.meanwhile-card p {
    font-size: 16px;
    color: var(--light-text);
    margin: 0;
}

.testimonial-box {
    margin: 50px 0;
}

.contact-reminder {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 4px;
    text-align: left;
}

.contact-reminder h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.thanks-actions {
    margin-top: 50px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--bg-white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

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

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page section {
    margin: 40px 0;
}

.legal-page h2 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 21px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-page h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 25px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page p {
    margin-bottom: 15px;
}

.legal-page strong {
    color: var(--primary-color);
}

.legal-contact {
    margin-top: 60px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 4px;
}

.legal-contact h2,
.legal-contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.warning-note {
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    margin: 25px 0;
    font-size: 16px;
}

.cookie-table {
    overflow-x: auto;
    margin: 25px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

/* Guarantee & Comparison */
.guarantee-section,
.comparison-section {
    margin: 60px 0;
}

.guarantee-section h2,
.comparison-section h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.guarantee-grid,
.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.guarantee-item,
.guide-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 4px;
}

.guarantee-item h4,
.guide-item h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.guarantee-item p {
    font-size: 16px;
}

.guide-item ul {
    margin-top: 15px;
    list-style: none;
}

.guide-item li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
}

.guide-item li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    font-family: 'Helvetica Neue', sans-serif;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .editorial-container {
        padding: 60px 40px 100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-image {
        margin: 50px -40px 0;
    }

    .inline-image-full {
        margin: 70px -40px;
    }

    .content-image-left,
    .content-image-right {
        flex-direction: row;
        align-items: flex-start;
    }

    .content-image-left img,
    .content-image-right img {
        width: 45%;
        flex-shrink: 0;
    }

    .content-text {
        flex: 1;
    }

    .content-image-right {
        flex-direction: row-reverse;
    }

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

    .testimonial-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .info-card {
        flex: 1 1 calc(50% - 15px);
    }

    .meanwhile-grid {
        flex-direction: row;
    }

    .meanwhile-card {
        flex: 1;
    }

    .guarantee-grid,
    .comparison-guide {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item,
    .guide-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-col {
        flex: 1;
    }

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

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

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    body {
        font-size: 19px;
    }

    .nav-minimal {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 50px;
    }

    .nav-brand {
        padding: 0;
        margin: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        margin: 0;
        padding: 0;
        gap: 35px;
    }

    .nav-menu.active {
        flex-direction: row;
    }

    .nav-menu a {
        border-bottom: none;
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 54px;
    }

    .testimonial-item {
        flex: 1 1 calc(33.333% - 20px);
    }

    .info-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}

/* Print Styles */
@media print {
    .nav-minimal,
    .cookie-banner,
    .sticky-cta,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .editorial-container {
        max-width: 100%;
        padding: 0;
    }
}