* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

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

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

.brand a {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.hero-split {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.hero-text {
    flex: 1;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.hero-image {
    flex: 1;
    background-color: #e8f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.features-split {
    background-color: #ffffff;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.feature-visual {
    flex: 1;
    background-color: #e8f4f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.feature-text {
    flex: 1;
}

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

.feature-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 20px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-image {
    background-color: #e8f4f8;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

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

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

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 12px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

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

.why-choose {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-choose h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

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

.booking-section.hidden {
    display: none;
}

.booking-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

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

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

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

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

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

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

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

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

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

.testimonial-block {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #3498db;
}

.testimonial-block p {
    font-size: 17px;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a6c7d;
    text-align: center;
    line-height: 1.8;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
    margin-bottom: 8px;
}

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

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

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

.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.2);
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie:hover {
    opacity: 0.9;
}

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

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

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

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

.page-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

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

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

.page-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

.contact-info-block p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

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

    .feature-block,
    .feature-block.reverse {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

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

    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 30px;
    }

    .main-nav a {
        font-size: 14px;
    }
}