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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 16px;
}

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

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

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

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

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

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

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

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

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

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

/* Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Split */
.hero-split {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    padding: 80px 30px;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
}

.hero-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 17px;
}

.cta-primary {
    background: #e74c3c;
    color: #ffffff;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.cta-secondary:hover {
    background: #e74c3c;
    color: #ffffff;
}

/* Intro Section */
.intro-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.intro-visual {
    flex: 0 0 450px;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

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

/* Services Preview */
.services-preview {
    padding: 100px 30px;
    background: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header p {
    font-size: 19px;
    color: #666;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #c0392b;
}

/* Methodology Split */
.methodology-split {
    padding: 100px 30px;
    background: #ffffff;
}

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

.methodology-text {
    flex: 1;
}

.methodology-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #2c3e50;
}

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

.methodology-visual {
    flex: 0 0 480px;
}

.methodology-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e74c3c;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

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

/* Value Proposition */
.value-proposition {
    padding: 100px 30px;
    background: #ffffff;
}

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

.value-visual {
    flex: 0 0 500px;
}

.value-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #2c3e50;
}

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

/* Booking Section */
.booking-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #fff5f0 0%, #f8f9fa 100%);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.booking-header p {
    font-size: 18px;
    color: #666;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #e74c3c;
}

.btn-submit {
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

/* Final CTA */
.final-cta {
    padding: 100px 30px;
    background: #2c3e50;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 46px;
    color: #ffffff;
    margin-bottom: 18px;
}

.final-cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 36px;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-col p {
    line-height: 1.7;
    color: #cccccc;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #cccccc;
    transition: color 0.3s ease;
}

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

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

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

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(231, 76, 60, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 30px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 16px;
}

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

/* About Page */
.about-intro {
    padding: 100px 30px;
    background: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #2c3e50;
}

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

.about-visual {
    flex: 0 0 480px;
}

.about-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Our Approach */
.our-approach {
    padding: 100px 30px;
    background: #f8f9fa;
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Team Section */
.team-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.team-visual {
    flex: 0 0 480px;
}

.team-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #2c3e50;
}

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

/* Values Section */
.values-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Impact Section */
.impact-section {
    padding: 100px 30px;
    background: #ffffff;
}

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

.impact-text {
    flex: 1;
}

.impact-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #2c3e50;
}

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

.impact-visual {
    flex: 0 0 480px;
}

.impact-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 46px;
    color: #ffffff;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 36px;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

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

.service-detail-text {
    flex: 1;
    padding: 50px;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-detail-text ul {
    margin-bottom: 30px;
}

.service-detail-text li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.service-duration {
    font-size: 15px;
    color: #999;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.service-detail-image {
    flex: 0 0 480px;
}

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

/* Booking CTA */
.booking-cta {
    padding: 80px 30px;
    background: #2c3e50;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.booking-cta-content p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.contact-item a {
    color: #e74c3c;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.contact-note p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.contact-visual {
    flex: 0 0 500px;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Booking Prompt */
.booking-prompt {
    padding: 80px 30px;
    background: #e74c3c;
    text-align: center;
}

.booking-prompt-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.booking-prompt-content p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

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

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #2ecc71;
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    text-align: left;
}

.step-item {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #c0392b;
}

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

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

/* Additional Info */
.additional-info {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.additional-info-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.additional-info-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.info-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.info-link {
    padding: 14px 28px;
    background: #ffffff;
    color: #e74c3c;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-link:hover {
    background: #e74c3c;
    color: #ffffff;
}

/* Legal Pages */
.legal-page {
    padding: 60px 30px 100px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 46px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 15px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

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

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

.legal-content a {
    color: #e74c3c;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: #f8f9fa;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 16px;
    color: #555;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

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

    .menu-toggle {
        display: flex;
    }

    .hero-content,
    .intro-split,
    .methodology-content,
    .value-split,
    .about-split,
    .team-content,
    .impact-split,
    .contact-container,
    .service-detail-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-visual,
    .intro-visual,
    .methodology-visual,
    .value-visual,
    .about-visual,
    .team-visual,
    .impact-visual,
    .contact-visual,
    .service-detail-image {
        flex: 1 1 auto;
        width: 100%;
    }

    .hero-text h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .section-header h2,
    .testimonials h2,
    .values-section h2,
    .faq-container h2 {
        font-size: 32px;
    }

    .intro-text h2,
    .methodology-text h2,
    .value-text h2,
    .about-text h2,
    .team-text h2,
    .impact-text h2 {
        font-size: 30px;
    }

    .service-card,
    .testimonial,
    .value-card,
    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .booking-container {
        padding: 30px 24px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .service-detail-text {
        padding: 30px 24px;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}