* {
    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.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    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: 300px;
    margin: 0;
}

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

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

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

.btn-accept {
    background-color: #4a9eff;
    color: #fff;
}

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

.btn-reject {
    background-color: #555;
    color: #fff;
}

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.ad-label {
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-right {
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image,
.intro-content {
    flex: 1;
}

.intro-image {
    background-color: #e5e5e5;
    position: relative;
    overflow: hidden;
}

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

.intro-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

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

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

.services-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

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

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

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

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

.service-image {
    background-color: #ddd;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 20px;
}

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

.btn-service:hover {
    background-color: #333;
}

.booking-split {
    display: flex;
    min-height: 600px;
}

.booking-content,
.booking-visual {
    flex: 1;
}

.booking-content {
    padding: 80px 60px;
    background-color: #fff;
}

.booking-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.booking-content > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    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: #4a9eff;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #3a8eef;
}

.booking-visual {
    background-color: #e5e5e5;
    position: relative;
    overflow: hidden;
}

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

.testimonials-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

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

.testimonial-author {
    font-weight: 600;
    color: #4a9eff;
}

.cta-split {
    display: flex;
    min-height: 500px;
}

.cta-visual,
.cta-content {
    flex: 1;
}

.cta-visual {
    background-color: #ddd;
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #fff;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4a9eff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4a9eff;
}

.thanks-box p {
    font-size: 17px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-box .service-selected {
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background-color: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-box a:hover {
    background-color: #3a8eef;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #333;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-container ul,
.page-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-container li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.page-container a {
    color: #4a9eff;
    text-decoration: underline;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 32px;
}

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

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

.contact-map {
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .booking-split,
    .cta-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonial {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

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