/* 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: #2a2a2a;
    background-color: #fafafa;
}

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #1a3523;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.2rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #fff;
}

.btn-accept:hover {
    background-color: #1a3523;
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Header and Navigation */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 800;
    color: #2d5a3d;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    padding-left: 2rem;
    border-left: 1px solid #e0e0e0;
}

/* Magazine Layout */
.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 2rem;
    background-color: #fff;
}

.hero-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.hero-image-column {
    flex: 1;
    background-color: #f5f5f5;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d5a3d;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #1a3523;
}

/* Multi-Column Grid */
.intro-columns {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.multi-column-grid {
    display: flex;
    gap: 3rem;
}

.column-wide {
    flex: 2;
}

.column-wide h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.column-narrow {
    flex: 1;
}

.info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    margin-bottom: 1rem;
    color: #2d5a3d;
}

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

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

/* Visual Break */
.visual-break {
    margin: 0;
}

.image-overlay-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #1a1a1a;
}

.image-overlay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.featured-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    font-family: Georgia, serif;
}

/* Services Section */
.services-preview {
    padding: 5rem 2rem;
    background-color: #fff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 0 0 calc(50% - 1rem);
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #555;
    font-size: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    margin: 1.5rem 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 0.8rem;
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.form-container-magazine {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.styled-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5a3d;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-submit:hover {
    background-color: #1a3523;
}

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonial-columns {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.testimonial-author {
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Final CTA */
.final-cta-section {
    padding: 5rem 2rem;
    background-color: #2d5a3d;
    color: #fff;
    text-align: center;
}

.cta-content-centered h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.btn-cta-large {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #fff;
    color: #2d5a3d;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */
.page-hero-simple {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.hero-text-centered {
    max-width: 800px;
    margin: 0 auto;
}

.about-content-magazine {
    padding: 4rem 2rem;
    background-color: #fff;
}

.content-split-asymmetric {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
}

.highlight-box {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

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

.principle-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.principle-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.image-block {
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 4px;
}

.image-block img {
    width: 100%;
    height: auto;
}

.philosophy-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.values-visual {
    margin: 0;
}

.image-text-overlay {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #1a1a1a;
}

.image-text-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.overlay-text-box {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 3rem;
    text-align: center;
    color: #fff;
}

.overlay-text-box h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.overlay-text-box p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-inline-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5a3d;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cta:hover {
    background-color: #1a3523;
}

/* Services Page Styles */
.services-detailed {
    background-color: #fff;
}

.service-detailed-card {
    border-bottom: 1px solid #e0e0e0;
}

.service-layout-split {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.service-layout-split.reverse {
    flex-direction: row-reverse;
}

.service-text-content {
    flex: 1;
}

.service-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-features h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.service-features ul {
    list-style-position: inside;
}

.service-features li {
    padding: 0.4rem 0;
}

.service-pricing-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2d5a3d;
    border-radius: 4px;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-image-content {
    flex: 1;
    background-color: #f5f5f5;
}

.service-image-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2d5a3d;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service:hover {
    background-color: #1a3523;
}

.services-cta {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.cta-centered-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-centered-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-layout-magazine {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main-column {
    flex: 2;
}

.contact-info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.info-block {
    flex: 0 0 calc(50% - 1rem);
}

.info-block h4 {
    color: #2d5a3d;
    margin-bottom: 0.8rem;
}

.note-small {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-expectations {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.process-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.process-list li {
    padding: 0.5rem 0;
}

.contact-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

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

.faq-question {
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-answer {
    color: #555;
    font-size: 0.95rem;
}

.sidebar-image {
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 4px;
}

.sidebar-image img {
    width: 100%;
    height: auto;
}

.contact-cta {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.cta-box-simple {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Thanks Page Styles */
.thanks-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.thanks-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-selected {
    font-weight: 600;
    color: #2d5a3d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.next-steps h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    padding: 0.7rem 0;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a3523;
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    border: 2px solid #2d5a3d;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #fff;
}

.post-thanks-info {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.info-columns {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-column {
    flex: 1;
    padding: 2rem;
    background-color: #fff;
    border-radius: 4px;
}

.info-column h4 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    background-color: #fff;
    padding: 4rem 2rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-update {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    padding: 0.4rem 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #2a2a2a;
}

.cookies-table td {
    color: #555;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-column ul li {
    padding: 0.4rem 0;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-split {
        flex-direction: column;
        gap: 2rem;
    }

    .multi-column-grid {
        flex-direction: column;
    }

    .service-layout-split,
    .service-layout-split.reverse {
        flex-direction: column;
    }

    .testimonial-columns {
        flex-direction: column;
    }

    .content-split-asymmetric {
        flex-direction: column;
    }

    .contact-layout-magazine {
        flex-direction: column;
    }

    .philosophy-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .info-columns {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        padding-top: 0.5rem;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

    .contact-info-blocks {
        flex-direction: column;
    }

    .info-block {
        flex: 0 0 100%;
    }

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

    .philosophy-card {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-text-column h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .navigation {
        padding: 1rem;
    }

    .hero-editorial,
    .intro-columns,
    .services-preview,
    .contact-form-section,
    .trust-section,
    .final-cta-section {
        padding: 2rem 1rem;
    }

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

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}