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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 4px;
}

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

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

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

.hero-text-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #2980b9;
}

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

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.services-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 25px;
}

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

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.btn-select-service {
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

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

.booking-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.booking-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.booking-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

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

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

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #27ae60;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #666;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 15px;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #27ae60;
    color: #ffffff;
}

.btn-primary:hover {
    background: #229954;
}

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

.btn-secondary:hover {
    background: #ffffff;
    color: #2c3e50;
}

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

    .hero-right,
    .intro-image,
    .booking-visual {
        min-height: 400px;
    }

    .hero-left,
    .intro-content,
    .booking-content {
        padding: 40px 30px;
    }

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

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

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

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

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

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-wrapper h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info strong {
    color: #2c3e50;
}

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

.thanks-content {
    max-width: 600px;
    padding: 40px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.btn-home {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #2980b9;
}