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

.ad-notice {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #333;
}

.intro-section {
    padding: 90px 30px;
    background: #fff;
}

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

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

.content-wrapper p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.split-feature {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.feature-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.feature-content h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    align-self: flex-start;
    margin-top: 20px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.services-grid {
    padding: 90px 30px;
    background: #f8f9fa;
}

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

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

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

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

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

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

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

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h4 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 25px 20px;
}

.select-service {
    padding: 14px;
    margin: 0 25px 25px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.split-reverse {
    display: flex;
    align-items: stretch;
    min-height: 550px;
}

.feature-content-alt {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.feature-content-alt h3 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.feature-content-alt > p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-check {
    font-size: 24px;
    color: #4a9eff;
    font-weight: 700;
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 15px;
    color: #666;
}

.feature-image-alt {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.feature-image-alt img {
    width: 100%;
    height: 100%;
    display: block;
}

.booking-section {
    padding: 90px 30px;
    background: #f8f9fa;
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

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

.booking-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.info-note {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #4a9eff;
    border-radius: 4px;
}

.info-note strong {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.booking-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

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

.disclaimer-section {
    padding: 60px 30px;
    background: #fff3cd;
    border-top: 2px solid #ffc107;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
    padding: 25px 30px;
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.cookie-content p {
    font-size: 14px;
    color: #555;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #1a1a1a;
    color: #fff;
}

.cookie-accept:hover {
    background: #333;
}

.cookie-reject {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

.cookie-reject:hover {
    background: #e9ecef;
}

@media (max-width: 968px) {
    .hero-split,
    .split-feature,
    .split-reverse,
    .booking-container,
    .footer-container {
        flex-direction: column;
    }

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

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

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

    .nav-links {
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}