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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f7fa;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4a5568;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #dce1e8;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.intro-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #e8ebed;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-text {
    flex: 1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
}

.services-showcase {
    background-color: #f9fafb;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 22px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a2e;
}

.service-card p {
    margin: 0 20px 16px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    margin: 16px 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #357abd;
}

.booking-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    gap: 60px;
}

.booking-info {
    flex: 0 0 40%;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.booking-info p {
    font-size: 17px;
    margin-bottom: 14px;
    color: #4a5568;
}

.booking-form {
    flex: 1;
}

.service-form {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn:hover {
    background-color: #357abd;
}

.selected-service-display {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #4a90e2;
}

.trust-section {
    background-color: #1a1a2e;
    padding: 80px 24px;
    color: #ffffff;
}

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

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
}

.testimonials-row {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255,255,255,0.08);
    padding: 32px;
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 600;
}

.info-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

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

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.info-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.checklist {
    list-style: none;
    margin: 24px 0;
}

.checklist li {
    padding: 12px 0 12px 36px;
    position: relative;
    font-size: 16px;
}

.checklist li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 18px;
}

.info-image {
    flex: 0 0 45%;
    background-color: #e8ebed;
    border-radius: 8px;
    overflow: hidden;
}

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

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 24px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #357abd;
}

.cookie-btn.reject {
    background-color: #e2e8f0;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background-color: #cbd5e0;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
    color: #ffffff;
    padding: 100px 24px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.service-detail-image {
    flex: 0 0 48%;
    background-color: #e8ebed;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-services {
    background-color: #f9fafb;
    padding: 60px 24px;
    margin-top: 40px;
}

.additional-services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a2e;
}

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

.additional-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.additional-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.additional-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 80px 24px;
    background-color: #f5f7fa;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.cta-section p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

.about-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    gap: 60px;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.about-image {
    flex: 0 0 45%;
    background-color: #e8ebed;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background-color: #f9fafb;
    padding: 80px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a2e;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

.team-image {
    flex: 0 0 45%;
    background-color: #e8ebed;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.team-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.process-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.process-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.process-step {
    flex: 0 0 calc(50% - 16px);
    background-color: #f9fafb;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a90e2;
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.process-step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 0 0 45%;
    background-color: #e8ebed;
    border-radius: 8px;
    overflow: hidden;
}

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

.info-section {
    background-color: #f9fafb;
    padding: 60px 24px;
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a2e;
}

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

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.info-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.map-placeholder {
    height: 400px;
    background-color: #e8ebed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(255,255,255,0.95);
    padding: 32px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.map-overlay p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: #4a90e2;
    margin-bottom: 24px;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.confirmation-details {
    background-color: #e8f4f8;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 4px solid #4a90e2;
}

.confirmation-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.next-steps {
    text-align: left;
    background-color: #f9fafb;
    padding: 28px;
    border-radius: 8px;
    margin: 32px 0;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a2e;
}

.legal-page h2 {
    font-size: 26px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #4a90e2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .info-split,
    .booking-split,
    .about-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .intro-text,
    .info-text,
    .team-text {
        padding-left: 0;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .service-card {
        flex: 0 0 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .value-item,
    .additional-item,
    .process-step {
        flex: 0 0 100%;
    }

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