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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    padding: 6px 12px;
    background: #f39c12;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    background: #fff;
}

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

.intro-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

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

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background: #e9ecef;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #5568d3;
}

.btn-select-service.selected {
    background: #27ae60;
}

.booking-split {
    display: flex;
    background: #fff;
}

.booking-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

.booking-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-text p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.booking-form-container {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-notice {
    padding: 16px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 24px;
    color: #155724;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
}

.btn-submit:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.form-notice {
    margin-top: 12px;
    font-size: 13px;
    color: #6c757d;
    text-align: center;
}

.values-split {
    display: flex;
    background: #fff;
}

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

.values-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

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

.values-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

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

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-container h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.disclaimer-container p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: #fff;
}

.footer-email {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-container .service-details {
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 4px;
}

.thanks-container .service-details strong {
    color: #1a1a1a;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #5568d3;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .values-split {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .booking-text,
    .values-text,
    .booking-form-container {
        padding: 40px 30px;
    }

    .hero-image,
    .intro-image,
    .values-image {
        min-height: 300px;
    }

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

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