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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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: 0 20px;
}

.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 12px;
    border: 1px solid #95a5a6;
    border-radius: 3px;
}

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

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

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8eaed;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-split {
    background-color: #f8f9fa;
}

.service-row {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

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

.service-image {
    flex: 1;
    background-color: #e8eaed;
    overflow: hidden;
}

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

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

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 15px;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.booking-form button {
    width: 100%;
    margin-top: 10px;
}

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.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;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.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;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-cookie.accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #2980b9;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

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

.page-hero h1 {
    font-size: 42px;
    color: #1a1a1a;
    text-align: center;
}

.page-hero p {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    color: #555;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

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

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.value-block {
    margin-bottom: 40px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

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

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.member-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.timeline-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 100px;
}

.timeline-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.cta-section {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-content .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-content .btn-primary:hover {
    background-color: #ecf0f1;
}

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.service-price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.service-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e8eaed;
}

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

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

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    min-width: 80px;
}

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

.step-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-map {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    padding: 80px 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-additional {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-additional h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: left;
}

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

.thanks-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-content strong {
    color: #2c3e50;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

.non-link {
    color: #555;
}

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

    .hero-left {
        padding: 40px 30px;
    }

    .hero-right {
        min-height: 400px;
    }

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

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

    .service-content {
        padding: 40px 30px;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }
}

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

    .hero-text p {
        font-size: 16px;
    }

    .intro-section h2,
    .values-section h2,
    .team-section h2 {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .price {
        font-size: 28px;
    }

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}