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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #1B4332;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Magazine Navigation */
.nav-magazine {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 20px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2D6A4F;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    margin-top: 15px;
    justify-content: center;
}

.nav-links li a {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #2D6A4F;
}

/* Hero Magazine Style */
.hero-magazine {
    background: #ffffff;
    padding: 80px 20px 60px;
    border-bottom: 2px solid #e0e0e0;
}

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-col {
    flex: 1;
    min-width: 0;
}

.hero-text-col h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 22px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-image-col {
    flex: 1;
    min-width: 0;
}

.hero-image-col img {
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Buttons */
.btn-hero {
    display: inline-block;
    background: #2D6A4F;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-hero:hover {
    background: #1B4332;
    color: #ffffff;
}

.btn-cta-secondary,
.btn-cta-large {
    display: inline-block;
    background: #D8A47F;
    color: #ffffff;
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
    text-align: center;
}

.btn-cta-secondary:hover,
.btn-cta-large:hover {
    background: #C07A50;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    background: #2D6A4F;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid #2D6A4F;
    color: #2D6A4F;
    padding: 12px 33px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

/* Editorial Intro */
.intro-editorial {
    padding: 80px 20px;
    background: #f5f5f5;
}

.intro-editorial h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-editorial p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

/* Feature Grid */
.features-grid {
    padding: 70px 20px;
    background: #ffffff;
}

.feature-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
}

.feature-icon {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 2px;
}

.feature-icon img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Testimonial Block */
.testimonial-block {
    padding: 70px 20px;
    background: #2D6A4F;
    color: #ffffff;
}

.testimonial-block blockquote {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-weight: 300;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 17px;
    font-style: normal;
    opacity: 0.85;
}

/* Services Magazine Layout */
.services-magazine {
    padding: 90px 20px;
    background: #fafafa;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 800;
    color: #1a1a1a;
    margin-left: 0;
}

.services-columns {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.service-visual {
    flex: 1;
    min-width: 0;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 2px;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-tagline {
    font-size: 16px;
    color: #2D6A4F;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.service-includes {
    list-style: none;
    margin-bottom: 20px;
}

.service-includes li {
    font-size: 15px;
    color: #4a4a4a;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D6A4F;
    font-weight: bold;
}

.service-duration {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 15px;
}

.service-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2D6A4F;
}

.btn-select {
    background: #D8A47F;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #C07A50;
}

/* CTA Sections */
.cta-inline {
    padding: 70px 20px;
    background: #f0f0f0;
    text-align: center;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-inline p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.final-cta {
    padding: 100px 20px;
    background: #1B4332;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-large {
    display: inline-block;
    background: #D8A47F;
    color: #ffffff;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.btn-large:hover {
    background: #C07A50;
    color: #ffffff;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background: #ffffff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 2px;
}

/* Social Proof */
.social-proof {
    padding: 80px 20px;
    background: #f8f8f8;
}

.social-proof h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
    font-weight: 600;
}

/* Booking Form */
.booking-section {
    padding: 90px 20px;
    background: #ffffff;
}

.booking-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 45px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 16px;
    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: #2D6A4F;
}

.btn-submit {
    width: 100%;
    background: #2D6A4F;
    color: #ffffff;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

.footer-columns {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    background: #D8A47F;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #C07A50;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #D8A47F;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #1B4332;
}

.btn-cookie-reject {
    background: #6a6a6a;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #4a4a4a;
}

/* Page Header */
.page-header {
    padding: 80px 20px 60px;
    background: #f5f5f5;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.header-lead {
    font-size: 20px;
    color: #4a4a4a;
}

/* Services Detailed Page */
.services-detailed {
    padding: 70px 20px;
    background: #fafafa;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background: #ffffff;
    padding: 40px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 15px;
    color: #6a6a6a;
}

.meta-item strong {
    color: #1a1a1a;
}

.service-booking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.price-large {
    font-size: 38px;
    font-weight: 700;
    color: #2D6A4F;
}

.booking-cta {
    padding: 70px 20px;
    background: #f0f0f0;
    text-align: center;
}

.booking-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.story-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    border-radius: 2px;
}

.philosophy {
    padding: 80px 20px;
    background: #f5f5f5;
}

.philosophy h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.philosophy p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.member-photo {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.member-role {
    font-size: 15px;
    color: #2D6A4F;
    margin-bottom: 12px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.values-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.cta-about {
    padding: 70px 20px;
    background: #2D6A4F;
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1.2;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 2px;
    margin-bottom: 15px;
}

.visual-caption p {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
}

.faq-snippet {
    margin-top: 40px;
}

.faq-snippet h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-snippet details {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 15px;
    cursor: pointer;
}

.faq-snippet summary {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.faq-snippet details p {
    margin-top: 10px;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-lead {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    text-align: left;
    max-width: 650px;
    margin: 0 auto 50px;
    background: #f8f8f8;
    padding: 35px;
    border-radius: 3px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2D6A4F;
    color: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.booking-details {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 3px;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.booking-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.details-note {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 40px;
}

.contact-reminder h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-reminder p {
    font-size: 17px;
    color: #4a4a4a;
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px 80px;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 16px;
    color: #3a3a3a;
}

.cookie-preferences-section {
    margin-top: 50px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 3px;
}

.cookie-preferences-section h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}

#current-preference {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

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

    .hero-content-split {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-col h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .feature-cards {
        flex-direction: column;
    }

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

    .service-visual img {
        min-height: 250px;
    }

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

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

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

    .service-detail-card {
        flex-direction: column !important;
        padding: 25px;
    }

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

    .service-booking-row,
    .service-price-row {
        flex-direction: column;
        gap: 15px;
    }

    .price,
    .price-large {
        margin-bottom: 10px;
    }

    .btn-select {
        width: 100%;
    }

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

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

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

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