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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #7fa88a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    min-height: 85vh;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-intro {
    font-size: 1.4rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.insight-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.insight-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-section p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.3rem;
    line-height: 1.9;
}

.insight-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.services-split {
    padding: 6rem 2rem;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.service-row-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 5rem;
    align-items: center;
    gap: 4rem;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.service-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1.5rem 0;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.form-right {
    flex: 1;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

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

.trust-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.trust-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.trust-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.trust-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.reference-item {
    font-size: 0.85rem;
    line-height: 1.5;
}

.reference-item a {
    display: inline;
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.hero-image-right {
    flex: 1;
}

.hero-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.story-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.story-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.3rem;
    line-height: 1.9;
}

.values-split {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.value-row-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    align-items: center;
    gap: 4rem;
}

.value-row-split.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
    padding: 2rem;
}

.value-image {
    flex: 1;
}

.value-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.value-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.value-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.value-content a:hover {
    text-decoration: underline;
}

.image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
}

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

.team-approach {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.team-approach h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.approach-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-section-about {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section-about h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section-about p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.page-hero-simple {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 6rem;
    align-items: flex-start;
    gap: 4rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

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

.service-detail-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-tagline {
    font-size: 1.15rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.contact-hero {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.contact-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.email-note,
.office-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-map-right {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

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

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

.map-overlay p {
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin-top: 2rem;
}

.selected-service-display {
    font-size: 1.1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    display: inline-block;
}

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

.next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1 1 calc(25% - 2.25rem);
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.thanks-cta h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.link-card {
    background-color: var(--bg-white);
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.legal-page {
    padding: 5rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        max-width: 100%;
        padding: 3rem 2rem;
    }

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

    .service-row-split,
    .service-row-split.reverse,
    .value-row-split,
    .value-row-split.reverse,
    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .page-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .contact-content-split {
        flex-direction: column;
    }

    .form-container-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .section-header-centered h2,
    .page-hero-simple h1,
    .contact-hero h1,
    .thanks-hero h1 {
        font-size: 2.3rem;
    }

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

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

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

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .link-card {
        width: 100%;
        text-align: center;
    }
}