* {
    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-color: #ffffff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-primary:hover {
    background: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #0066cc;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

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

.intro-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background: #f0f0f0;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.card-image {
    background: #e5e5e5;
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #0066cc;
}

.why-choose {
    padding: 100px 0;
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

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

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

.booking-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.booking-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea: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: background 0.2s;
}

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

.trust-section {
    padding: 80px 0;
}

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

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #0066cc;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

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

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

.btn-reject {
    background: #e5e5e5;
    color: #1a1a1a;
}

.btn-reject:hover {
    background: #d0d0d0;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-page {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-details {
    margin-top: 40px;
}

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

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

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

.contact-map {
    flex: 1;
    background: #f0f0f0;
    min-height: 500px;
    border-radius: 8px;
}

.about-hero {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 700;
    max-width: 800px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 700px;
}

.about-content {
    padding: 100px 0;
}

.content-block {
    margin-bottom: 80px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.services-page {
    padding: 80px 0;
}

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

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detail-content .price {
    font-size: 24px;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

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

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .service-detail,
    .service-detail:nth-child(even) {
        flex-direction: column;
    }
}