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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.cookie-accept:hover {
    background-color: #6d5635;
}

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

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

/* Header and Navigation */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    color: #4a4a4a;
    font-weight: 500;
}

.nav-links a:hover {
    color: #8b6f47;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 3px;
}

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

/* Hero Magazine Style */
.hero-magazine {
    margin-bottom: 60px;
}

.hero-columns {
    position: relative;
}

.hero-col-main {
    position: relative;
    background-color: #2c2c2c;
}

.hero-col-main img {
    width: 100%;
    height: 600px;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    color: #ffffff;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Intro Grid */
.intro-grid {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-col-wide {
    flex: 2;
}

.intro-col-wide h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-col-wide p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.intro-col-narrow {
    flex: 1;
}

.feature-card {
    background-color: #f5f1eb;
    padding: 40px;
    border-left: 4px solid #8b6f47;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.text-link {
    color: #8b6f47;
    font-weight: 600;
    font-size: 15px;
}

.text-link:hover {
    color: #6d5635;
}

/* Visual Break */
.visual-break {
    margin: 80px 0;
    background-color: #e8e4df;
}

.visual-break img {
    width: 100%;
    height: 400px;
}

/* Content Blocks */
.content-blocks {
    padding: 0 60px;
}

.block-asymmetric {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.block-text {
    flex: 1;
}

.block-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.block-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.block-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.block-full-width {
    margin-bottom: 100px;
}

.block-full-width h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.collection-item {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.collection-item img {
    width: 100%;
    height: 300px;
    background-color: #e8e4df;
}

.collection-item h3 {
    font-size: 22px;
    padding: 24px 24px 12px;
    color: #1a1a1a;
}

.collection-item p {
    font-size: 15px;
    padding: 0 24px 24px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Services Highlight */
.services-highlight {
    background-color: #f5f1eb;
    padding: 80px 60px;
    margin: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-top: 4px solid #8b6f47;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #8b6f47;
}

.services-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6d5635;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 60px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-layout {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
}

.testimonial blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    color: #cccccc;
}

/* Image Text Offset */
.image-text-offset {
    padding: 100px 60px;
}

.offset-container {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.offset-image {
    flex: 1;
    background-color: #e8e4df;
}

.offset-image img {
    width: 100%;
    height: 600px;
}

.offset-text {
    flex: 1;
    padding-top: 60px;
}

.offset-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.offset-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f5f1eb;
    padding: 80px 60px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border: 1px solid #e0e0e0;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #6d5635;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px;
    background-color: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #cccccc;
}

.footer-col ul li a:hover {
    color: #8b6f47;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

/* Page Hero */
.page-hero {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #cccccc;
}

/* About Page Styles */
.about-story {
    padding: 80px 60px;
}

.story-layout {
    display: flex;
    gap: 80px;
}

.story-main {
    flex: 2;
}

.story-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.story-main img {
    margin: 40px 0;
    width: 100%;
    height: 400px;
    background-color: #e8e4df;
}

.story-sidebar {
    flex: 1;
}

.info-box {
    background-color: #f5f1eb;
    padding: 40px;
    border-left: 4px solid #8b6f47;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-box ul {
    list-style: disc;
    padding-left: 20px;
}

.info-box ul li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.expertise-section {
    background-color: #f5f1eb;
    padding: 80px 60px;
}

.expertise-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-area {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-top: 3px solid #8b6f47;
}

.expertise-area h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.expertise-area p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.team-approach {
    padding: 80px 60px;
}

.approach-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #e8e4df;
}

.approach-image img {
    width: 100%;
    height: 450px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.achievements {
    background-color: #f5f1eb;
    padding: 80px 60px;
}

.achievements h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.timeline-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    min-width: 80px;
}

.timeline-item p {
    font-size: 17px;
    color: #3a3a3a;
    flex: 1;
}

.philosophy {
    padding: 80px 60px;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.cta-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

/* Services Page Styles */
.services-intro {
    padding: 60px;
    background-color: #f5f1eb;
}

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

.intro-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.services-detailed {
    padding: 80px 60px;
}

.service-block {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #3a3a3a;
    line-height: 1.7;
}

.service-features {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 24px;
    background-color: #f5f1eb;
    border-left: 4px solid #8b6f47;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
}

.price-note {
    font-size: 13px;
    color: #666;
}

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

.service-image img {
    width: 100%;
    height: 450px;
}

.service-notes {
    background-color: #f9f9f9;
    padding: 40px 60px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.service-notes h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-notes p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

/* Contact Page Styles */
.contact-layout {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.info-block .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.email-display {
    font-family: 'Courier New', monospace;
    color: #4a4a4a;
}

.impressum-section {
    flex: 1;
}

.impressum-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.impressum-section h3 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.impressum-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.impressum-section a {
    color: #8b6f47;
}

.impressum-section a:hover {
    text-decoration: underline;
}

.anfahrt-section {
    background-color: #f5f1eb;
    padding: 60px;
}

.anfahrt-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.anfahrt-content {
    max-width: 900px;
}

.anfahrt-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.anfahrt-text p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.anfahrt-text ul {
    list-style: disc;
    padding-left: 24px;
    margin-top: 12px;
}

.anfahrt-text ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #4a4a4a;
}

/* Thanks Page Styles */
.thanks-page {
    min-height: 60vh;
}

.thanks-hero {
    background-color: #f5f1eb;
    padding: 100px 60px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 30px;
    color: #8b6f47;
    font-weight: 600;
}

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

.thanks-details p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.next-steps {
    padding: 80px 60px;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8b6f47;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.meanwhile-section {
    background-color: #f5f1eb;
    padding: 80px 60px;
}

.meanwhile-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.meanwhile-content {
    max-width: 1000px;
    margin: 0 auto;
}

.meanwhile-content > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #3a3a3a;
}

.meanwhile-links {
    display: flex;
    gap: 30px;
}

.link-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-top: 4px solid #8b6f47;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
}

.link-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.link-card p {
    font-size: 15px;
    color: #4a4a4a;
}

.contact-reminder {
    padding: 60px;
    text-align: center;
}

.reminder-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.reminder-content p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.legal-section h4 {
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 10px;
    color: #3a3a3a;
    font-weight: 600;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #3a3a3a;
}

.legal-section ul {
    list-style: disc;
    padding-left: 28px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #3a3a3a;
    line-height: 1.6;
}

.legal-section a {
    color: #8b6f47;
}

.legal-section a:hover {
    text-decoration: underline;
}

.updated {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 40px;
}

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

.cookie-table thead {
    background-color: #f5f1eb;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid,
    .block-asymmetric,
    .offset-container,
    .approach-layout,
    .service-block,
    .contact-layout {
        flex-direction: column;
    }

    .services-cards,
    .collection-grid,
    .testimonial-layout,
    .steps-grid,
    .meanwhile-links {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 16px 20px;
    }

    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

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

    .intro-grid,
    .content-blocks,
    .services-highlight,
    .contact-form-section,
    .disclaimer-section {
        padding: 40px 20px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .expertise-area {
        flex: 1 1 100%;
    }

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

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 16px;
    }
}
