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

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

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

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #9a3824;
}

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

li {
    margin-bottom: 0.5rem;
}

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

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cookie.accept {
    background-color: #c84c34;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #9a3824;
}

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

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #c84c34;
}

.ad-notice {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

/* Hero Sections */
.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2c2c2c;
    overflow: hidden;
}

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

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

.hero-overlay h1 {
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 1rem auto;
}

.hero-overlay p {
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.page-hero {
    background-color: #f8f6f3;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: #555555;
}

/* Editorial Layout - Magazine Style */
.intro-editorial {
    padding: 4rem 0;
    background-color: #fafafa;
}

.editorial-columns {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
    position: sticky;
    top: 120px;
}

.inline-img {
    margin: 2rem 0;
    background-color: #e8e8e8;
    object-fit: cover;
}

.sidebar-card {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

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

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

.highlight-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.highlight-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c84c34;
    font-weight: bold;
}

.cta-sidebar {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 2rem;
}

.cta-sidebar h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.cta-sidebar p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Story Grid Section */
.featured-story {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.text-link {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #c84c34;
    margin-top: 1.5rem;
}

.text-link:hover {
    color: #9a3824;
}

/* Services Preview - Magazine Cards */
.services-preview {
    padding: 5rem 0;
    background-color: #f8f6f3;
}

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

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

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card.large {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-card.large .service-content {
    flex: 1;
}

.service-card.large img {
    flex: 1;
    object-fit: cover;
}

.service-card.medium {
    flex: 1 1 calc(50% - 1rem);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c84c34;
    margin-bottom: 1.5rem;
}

/* Cultural Impact Section */
.cultural-impact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.impact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.impact-item p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonials h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-columns {
    display: flex;
    gap: 3rem;
}

.testimonial {
    flex: 1;
    background-color: #3a3a3a;
    padding: 2.5rem;
    border-left: 4px solid #c84c34;
}

.testimonial p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #aaaaaa;
}

/* CTA Sections */
.cta-final {
    padding: 5rem 0;
    background-color: #f8f6f3;
}

.cta-box {
    background-color: #ffffff;
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
}

.cta-box h2 {
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2rem;
}

.cta-about {
    padding: 4rem 0;
    background-color: #f8f6f3;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-submit,
.btn-select {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-primary {
    background-color: #c84c34;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #9a3824;
    color: #ffffff;
}

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

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

.btn-submit,
.btn-select {
    background-color: #c84c34;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover,
.btn-select:hover {
    background-color: #9a3824;
}

/* Services Detailed Page */
.services-detailed {
    padding: 3rem 0;
}

.service-full {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.service-full:nth-child(even) {
    flex-direction: row-reverse;
}

.service-media {
    flex: 1;
    background-color: #e8e8e8;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-info {
    flex: 1;
}

.service-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 2rem;
}

.service-details h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-details ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c84c34;
    font-weight: bold;
}

.service-price-box {
    background-color: #f8f6f3;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
}

.price-amount {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c84c34;
}

/* Form Section */
.booking-section {
    padding: 5rem 0;
    background-color: #fafafa;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.booking-section > p {
    text-align: center;
    color: #555555;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: Georgia, serif;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* About Page */
.about-story {
    padding: 3rem 0;
}

.story-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-content {
    flex: 1.2;
}

.story-layout .story-image {
    flex: 1;
    background-color: #e8e8e8;
}

.story-layout .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.approach {
    padding: 5rem 0;
    background-color: #f8f6f3;
}

.approach h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.approach-item h3 {
    margin-bottom: 1rem;
}

.team {
    padding: 5rem 0;
    background-color: #ffffff;
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: #555555;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #fafafa;
    padding: 2rem;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-member .role {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #c84c34;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.values {
    padding: 5rem 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.values h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-block {
    margin-bottom: 3rem;
}

.value-block h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-block p {
    color: #e0e0e0;
}

.impact {
    padding: 5rem 0;
    background-color: #f8f6f3;
}

.impact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c84c34;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: #555555;
}

.impact-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Page */
.contact-info {
    padding: 3rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #c84c34;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
}

.hours-note {
    font-size: 0.9rem;
    color: #666666;
    font-style: italic;
    margin-top: 1rem;
}

.location-context {
    padding: 4rem 0;
    background-color: #f8f6f3;
}

.location-context h2 {
    margin-bottom: 2rem;
}

.visit-info {
    padding: 4rem 0;
    background-color: #ffffff;
}

.visit-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 3rem;
}

.visit-box h2 {
    margin-bottom: 1.5rem;
}

.inquiries {
    padding: 4rem 0;
    background-color: #f8f6f3;
}

.inquiries h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1.5rem);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #c84c34;
}

.faq-item p {
    font-size: 0.95rem;
}

.media-contact {
    padding: 4rem 0;
    background-color: #ffffff;
}

.media-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem;
}

.media-box h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.media-box p {
    color: #e0e0e0;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0;
    background-color: #f8f6f3;
}

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

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

.confirmation-box {
    background-color: #ffffff;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.confirmation-box h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

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

.step h3 {
    font-size: 1.5rem;
    color: #c84c34;
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    color: #555555;
}

.selected-service-info {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 4px solid #c84c34;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.while-waiting {
    padding: 4rem 0;
    background-color: #ffffff;
}

.while-waiting h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.while-waiting > p {
    text-align: center;
    color: #555555;
    margin-bottom: 3rem;
}

.waiting-links {
    display: flex;
    gap: 2rem;
}

.waiting-card {
    flex: 1;
    background-color: #fafafa;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: block;
}

.waiting-card:hover {
    background-color: #f0f0f0;
    border-color: #c84c34;
}

.waiting-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.waiting-card p {
    color: #555555;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.updated {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

.legal-page li {
    list-style-type: disc;
}

.cookie-table h3 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.cookie-table p {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #e0e0e0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 4rem 0 2rem 0;
    margin-top: 5rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaaaaa;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #cccccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #666666;
    max-width: 900px;
    margin: 1.5rem auto 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .editorial-columns {
        flex-direction: column;
    }

    .column-sidebar {
        position: static;
    }

    .service-card.medium {
        flex: 1 1 100%;
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .story-grid,
    .contact-layout,
    .story-layout {
        flex-direction: column;
    }

    .service-full {
        flex-direction: column !important;
    }

    .service-card.large {
        flex-direction: column;
    }

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

    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 calc(50% - 1.5rem);
    }

    .footer-columns {
        flex-direction: column;
        gap: 2.5rem;
    }

    .next-steps {
        flex-direction: column;
    }

    .waiting-links {
        flex-direction: column;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container,
    .container-narrow {
        padding: 0 1rem;
    }

    .hero-image-container {
        height: 400px;
    }

    .hero-overlay {
        padding: 2rem 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .service-form,
    .cta-box,
    .visit-box {
        padding: 2rem;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .impact-stats {
        flex-direction: column;
    }
}