:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.cookie-btn:active {
    transform: scale(0.98);
}

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

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

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

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

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
    padding: 6px;
    margin: 0 -20px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 80px 20px 60px;
    color: var(--white);
}

.hero-text-overlay h1 {
    max-width: 800px;
    margin: 0 auto 16px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.hero-text-overlay .lead {
    max-width: 600px;
    margin: 0 auto;
    font-size: 20px;
    opacity: 0.9;
    text-align: center;
}

.page-hero.compact {
    height: 45vh;
    min-height: 350px;
}

.page-hero.compact .hero-text-overlay {
    padding: 60px 20px 40px;
}

.page-hero.compact h1 {
    font-size: 40px;
}

.story-section {
    padding: 80px 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.narrow-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.drop-cap::first-letter {
    float: left;
    font-size: 72px;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 4px;
    color: var(--primary-color);
    font-weight: 700;
}

.inline-image-section {
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.image-left-text-right,
.image-right-text-left {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.section-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.inline-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

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

.inline-cta:active {
    transform: scale(0.98);
}

.alt-layout {
    background-color: var(--white);
}

.featured-services {
    padding: 80px 20px;
    background-color: var(--white);
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.services-intro p {
    color: var(--text-light);
    font-size: 18px;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.card-cta {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.card-cta:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.services-cta-container {
    text-align: center;
    margin-top: 40px;
}

.section-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

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

.testimonial-inline {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 22px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

.submit-btn:active {
    transform: scale(0.98);
}

.services-form {
    background-color: var(--white);
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 20px 0;
}

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

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
}

.footer-brand p {
    margin-top: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.values-section {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.values-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    color: var(--text-light);
    font-size: 15px;
}

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.team-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.team-member .role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-member .bio {
    color: var(--text-light);
    font-size: 14px;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    text-align: center;
}

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

.cta-container h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-container p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 18px;
}

.primary-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    margin-right: 16px;
    transition: transform 0.1s ease;
}

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

.primary-cta:active {
    transform: scale(0.98);
}

.secondary-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.secondary-cta:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
}

.service-detail {
    padding: 60px 20px;
}

.service-detail.alt-layout {
    background-color: var(--bg-light);
}

.service-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-detail-container.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-color);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.service-pricing {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 8px;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

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

.comparison-section {
    padding: 60px 20px;
    background-color: var(--white);
}

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

.comparison-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: var(--bg-light);
}

.contact-main {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1.5;
}

.contact-info-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-section > p {
    color: var(--text-color);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.contact-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.sidebar-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.sidebar-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.sidebar-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 14px;
}

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

.location-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

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

.location-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.location-container > p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.transport-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.transport-info p {
    margin-bottom: 8px;
    color: var(--text-color);
}

.faq-section {
    padding: 80px 20px;
}

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

.faq-container h2 {
    font-size: 28px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-color);
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

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

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    color: var(--text-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    counter-reset: step;
}

.steps-list li {
    counter-increment: step;
    padding: 16px 0;
    padding-left: 50px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.additional-resources {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

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

.resources-container h2 {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.resources-grid {
    display: flex;
    gap: 24px;
}

.resource-card {
    flex: 1;
    padding: 24px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.resource-link {
    color: var(--accent-color);
    font-weight: 500;
}

.legal-page {
    padding: 60px 20px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.legal-section:first-of-type h2 {
    border-top: none;
    padding-top: 0;
}

.legal-section h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin: 20px 0 12px;
}

.legal-section p {
    margin-bottom: 16px;
    color: var(--text-color);
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: var(--text-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

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

@media (max-width: 900px) {
    .image-left-text-right,
    .image-right-text-left,
    .service-detail-container,
    .service-detail-container.reverse {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

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

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

    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .hero-text-overlay .lead {
        font-size: 16px;
    }

    .story-section {
        padding: 50px 20px;
    }

    .narrow-content h2 {
        font-size: 26px;
    }

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

    .drop-cap::first-letter {
        font-size: 56px;
    }

    .section-image img {
        height: 280px;
    }

    .service-card {
        max-width: 100%;
    }

    .form-container {
        padding: 24px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        height: 50vh;
        min-height: 350px;
    }

    .hero-text-overlay h1 {
        font-size: 26px;
    }

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

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

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}
