* {
    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: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.cookie-banner.visible {
    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;
    margin: 0;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

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

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

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

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

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

.hero-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

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

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

.info-image {
    flex: 1;
    background: #d0d0d0;
}

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

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

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

.info-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

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

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

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #666666;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    flex: 0 0 45%;
    background: #d8d8d8;
}

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

.service-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-top: auto;
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 24px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #0052a3;
}

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

.trust-content {
    flex: 1;
    padding: 80px 60px;
    background: #0066cc;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.trust-points {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    opacity: 0.85;
}

.trust-image {
    flex: 1;
    background: #c8c8c8;
}

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

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

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

.booking-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.booking-left p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.booking-note {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

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

.btn-submit:hover {
    background: #0052a3;
}

.disclaimer-section {
    padding: 60px;
    background: #f0f0f0;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #666666;
    text-align: center;
    line-height: 1.8;
}

.split-footer {
    display: flex;
    padding: 80px 60px;
    background: #2c2c2c;
    color: #ffffff;
    gap: 80px;
}

.footer-left {
    flex: 1;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.page-header {
    padding: 80px 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #666666;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-content li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4a4a4a;
}

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #0066cc;
    color: #ffffff;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.contact-item p {
    font-size: 20px;
    font-weight: 500;
}

.contact-visual {
    flex: 1;
    background: #d0d0d0;
}

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

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #0066cc;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-content .selected-service {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .split-header {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .hero-split,
    .info-split,
    .trust-split,
    .booking-split,
    .split-footer,
    .contact-split {
        flex-direction: column;
    }

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

    .service-image {
        flex: 0 0 200px;
    }

    .trust-points {
        flex-direction: column;
        gap: 20px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}