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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

/* Buttons and CTAs */
.cta-primary,
.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-secondary,
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Intro Statement */
.intro-statement {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.large-text {
    font-size: 1.75rem;
    line-height: 1.6;
    color: #34495e;
    font-weight: 300;
}

/* Services Grid - Split Screen Style */
.services-grid {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-header-offset {
    padding: 0 3rem 3rem;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-container {
    display: flex;
    flex-direction: column;
}

.service-card {
    display: flex;
    min-height: 450px;
}

.service-card.reversed {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #dfe6e9;
    position: relative;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Why Section - Split */
.why-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.why-text {
    flex: 1;
    padding: 3rem;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.why-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

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

.feature-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.25rem;
}

.why-visual {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonial-strip {
    padding: 4rem 2rem;
    background-color: #34495e;
    color: #ffffff;
}

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

blockquote {
    flex: 1;
    min-width: 300px;
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #3498db;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.125rem;
    color: #555;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Coverage Section */
.coverage-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.coverage-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coverage-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.5);
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Page Hero */
.page-hero {
    background-color: #3498db;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    margin-bottom: 0;
    min-height: 500px;
}

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

.service-visual-left {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

.service-visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.service-info-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-includes ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
}

.service-includes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.pricing-info {
    margin-bottom: 2rem;
}

.price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.service-cta-section {
    padding: 5rem 2rem;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

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

.service-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* About Page */
.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
}

.about-text-block {
    flex: 1;
    padding: 3rem;
}

.about-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-image-block {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
}

.team-image-left {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.team-text-right {
    flex: 1;
    padding: 3rem;
}

.team-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text-right p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.commitment-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.commitment-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.commitment-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-cta-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Contact Page */
.contact-content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 0;
}

.contact-info-block {
    flex: 1;
    padding: 3rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail-group {
    margin-bottom: 2.5rem;
}

.contact-detail-group h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail-group p,
.contact-detail-group a {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.contact-detail-group a:hover {
    color: #3498db;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.coverage-list {
    list-style: none;
    margin-top: 1rem;
}

.coverage-list li {
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
    color: #555;
}

.coverage-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

.contact-visual-block {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-visual-block img {
    width: 100%;
    border-radius: 8px;
}

.contact-visual-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.approach-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.approach-step p {
    color: #555;
    line-height: 1.6;
}

.contact-map-placeholder {
    background-color: #dfe6e9;
    padding: 5rem 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    background-color: #bdc3c7;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.map-overlay p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-final-cta {
    padding: 5rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

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

.selected-service-box {
    background-color: #e8f8f5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #27ae60;
    margin-top: 0.5rem;
}

.thanks-details {
    margin: 3rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: #3498db;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step p {
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin-top: 0.5rem;
}

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

.thanks-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.info-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 2rem 5rem;
    background-color: #ffffff;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-intro {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-wrapper h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-wrapper h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-wrapper h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.legal-wrapper ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-wrapper li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.legal-contact {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-split,
    .service-card,
    .service-card.reversed,
    .why-content,
    .about-story-split,
    .team-approach-split,
    .contact-content-split,
    .service-detail-card,
    .service-detail-card.reversed {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .section-header-offset h2,
    .why-text h2,
    .about-text-block h2,
    .team-text-right h2,
    .contact-info-block h2,
    .form-intro h2,
    .commitment-wrapper h2,
    .coverage-content h2,
    .service-cta-content h2,
    .about-cta-content h2,
    .final-cta-content h2,
    .thanks-content h1,
    .approach-content h2,
    .values-section h2,
    .process-section h2 {
        font-size: 2rem;
    }

    .large-text {
        font-size: 1.25rem;
    }

    .hero-content,
    .service-details,
    .why-text,
    .about-text-block,
    .team-text-right,
    .contact-info-block,
    .service-info-right {
        padding: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .process-grid,
    .values-grid,
    .approach-steps,
    .info-grid {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
