:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fff;
    --color-bg-alt: #f8f9fa;
    --color-bg-dark: #2c3e50;
    --color-border: #e0e0e0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --narrow-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

ul {
    list-style: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: #ffeaa7;
    color: #636e72;
    border-radius: 3px;
}

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

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-secondary);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-secondary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease;
}

.editorial-layout {
    min-height: 100vh;
}

.hero-editorial {
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
}

.hero-content h1 {
    max-width: var(--narrow-width);
    margin: 0 auto;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content .lead {
    max-width: var(--narrow-width);
    margin: 0 auto;
    font-size: 1.25rem;
    opacity: 0.9;
}

.page-hero {
    position: relative;
}

.page-hero .hero-image-container {
    height: 50vh;
    min-height: 350px;
}

.page-hero.compact {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.page-hero.compact h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero.compact .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.hero-content.centered {
    position: relative;
    background: none;
    text-align: center;
}

.story-section {
    padding: 4rem 2rem;
}

.story-section.alt-bg {
    background-color: var(--color-bg-alt);
}

.narrow-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.inline-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #dfe6e9;
}

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

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--color-bg);
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.challenge-list,
.feature-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.challenge-list li,
.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    list-style: none;
}

.challenge-list li::before,
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.highlight-section {
    background: linear-gradient(135deg, var(--color-primary), #1a252f);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.highlight-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.highlight-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-link {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 0.25rem;
}

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

.services-preview {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.section-header h2 {
    font-size: 2rem;
    color: var(--color-primary);
}

.section-header p {
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-image {
    height: 200px;
    overflow: hidden;
    background-color: #b2bec3;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.price {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-secondary);
    font-weight: 600;
    border: 2px solid var(--color-secondary);
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-secondary), #2980b9);
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.form-section {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-container > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.site-footer {
    background-color: var(--color-bg-dark);
    color: #fff;
    padding-top: 3rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.footer-contact {
    flex: 1 1 250px;
}

.footer-contact p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

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

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 400px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.btn-reject:hover {
    border-color: #fff;
}

.cookie-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #fff;
}

.values-section {
    padding: 4rem 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    justify-content: center;
}

.value-item {
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
}

.value-icon {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.team-section {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: var(--color-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.member-image {
    height: 280px;
    overflow: hidden;
    background-color: #b2bec3;
}

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

.team-member h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    padding: 1.5rem 1.5rem 0.25rem;
}

.team-member .role {
    color: var(--color-secondary);
    font-weight: 600;
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.team-member p:last-child {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.services-full {
    padding: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-detailed {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-detailed.featured {
    background: linear-gradient(to right, #f8f9fa, #fff);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--color-secondary);
}

.service-detailed .service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #b2bec3;
}

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

.service-detailed .service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-info > p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.service-includes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.price-tag {
    margin-bottom: 1.5rem;
}

.price-tag .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-tag .note {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.process-section {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    justify-content: center;
}

.step {
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info-section {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-card.highlight {
    background-color: var(--color-secondary);
    color: #fff;
}

.contact-card h2 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.contact-card.highlight h2 {
    color: #fff;
}

.contact-card address {
    font-style: normal;
}

.contact-card address p {
    margin-bottom: 0.25rem;
}

.email-display {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
}

.contact-map-section {
    flex: 1 1 400px;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background-color: #b2bec3;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.map-overlay p {
    font-size: 1rem;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.faq-list {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

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

.direction-section {
    padding: 3rem 2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
}

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

.thanks-icon {
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--color-bg-alt);
    border-radius: 6px;
}

.thanks-section p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

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

.next-steps {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.steps-timeline {
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--color-text-light);
}

.legal-content {
    max-width: var(--narrow-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

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

.legal-section h3 {
    font-size: 1.15rem;
    color: var(--color-text);
    margin: 1.5rem 0 0.75rem;
}

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

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-section li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.legal-section address {
    font-style: normal;
    background-color: var(--color-bg-alt);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.contact-highlight {
    font-weight: 600;
    color: var(--color-secondary);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

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

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

@media (max-width: 900px) {
    .service-detailed,
    .service-detailed.reverse {
        flex-direction: column;
    }

    .service-detailed .service-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 0.75rem 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero.compact h1 {
        font-size: 1.75rem;
    }

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

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

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }
}
