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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

.nav a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 8px;
    border-radius: 3px;
}

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

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

.split-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.hero-image, .split-right {
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    color: #5a6c7d;
    text-align: center;
}

.services-split .service-row {
    display: flex;
    min-height: 500px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #34495e;
}

.trust-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.trust-item {
    flex: 1;
}

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

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

.testimonial-split {
    display: flex;
    min-height: 400px;
}

.testimonial-content {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #95a5a6;
}

.booking-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.booking-split {
    display: flex;
    gap: 60px;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 16px;
    color: #5a6c7d;
}

.booking-form-container {
    flex: 1;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

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

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

.about-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.mission-section {
    background-color: #ecf0f1;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.mission-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.values-split .value-row {
    display: flex;
    min-height: 450px;
}

.value-row.reverse {
    flex-direction: row-reverse;
}

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

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

.value-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-content p {
    font-size: 16px;
    color: #5a6c7d;
}

.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.team-section p {
    font-size: 16px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.services-catalog .service-item-split {
    display: flex;
    min-height: 550px;
    margin-bottom: 0;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-item-split:nth-child(even) .service-detail-content {
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #5a6c7d;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

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

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #5a6c7d;
}

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

.contact-text-section {
    background-color: #ffffff;
}

.contact-text-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

.contact-text-section p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-section > .container-narrow > p {
    font-size: 18px;
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.thanks-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.legal-page {
    background-color: #ffffff;
    padding: 40px 20px 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

    .hero-split, .service-row, .about-split, .value-row, .service-item-split, .contact-split, .testimonial-split {
        flex-direction: column;
    }

    .service-row.reverse, .value-row.reverse, .service-item-split.reverse {
        flex-direction: column;
    }

    .trust-grid, .footer-grid, .booking-split {
        flex-direction: column;
    }

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

    .split-left, .service-content, .about-content, .value-content, .service-detail-content, .contact-info {
        padding: 40px 20px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}