* {
    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: #333;
    background-color: #fff;
}

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

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

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

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

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

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

.nav a:hover {
    color: #2c5f7c;
}

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

.hero {
    margin-top: 0;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 20px;
    color: #fff;
}

.intro-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.intro-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.intro-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c5f7c;
}

.intro-card p {
    padding: 0 20px 20px;
    color: #666;
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c5f7c;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-content {
    padding: 25px;
}

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

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

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f7c;
    margin: 20px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f7c;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #1e4a61;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c5f7c;
    padding: 12px 24px;
    border: 2px solid #2c5f7c;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #2c5f7c;
    color: #fff;
}

.booking-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.booking-info {
    flex: 1;
}

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

.booking-form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

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

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #2c5f7c;
}

.btn-submit {
    width: 100%;
    background-color: #2c5f7c;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.why-us {
    padding: 80px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c5f7c;
}

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

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f7c;
}

.feature-card p {
    color: #666;
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #bbb;
    margin-bottom: 8px;
}

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

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c5f7c;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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;
}

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

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

.btn-accept {
    background-color: #2c5f7c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

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

.btn-reject {
    background-color: #fff;
    color: #2c5f7c;
    padding: 10px 20px;
    border: 2px solid #2c5f7c;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2c5f7c 0%, #1e4a61 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
}

.services-detail {
    padding: 80px 0;
}

.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.service-detail-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-detail-content li {
    color: #666;
    margin-bottom: 8px;
}

.service-price-block {
    margin: 25px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 18px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f7c;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c5f7c;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.team-section p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c5f7c;
}

.experience-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c5f7c;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f7c;
}

.contact-item p {
    color: #666;
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
}

.contact-image-card img {
    width: 100%;
    border-radius: 8px;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-additional p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f7c;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-service-info p {
    margin: 0;
    color: #2c5f7c;
    font-weight: 600;
}

.thanks-next-steps {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.legal-page {
    padding: 60px 0;
}

.legal-page .container {
    max-width: 900px;
}

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

.legal-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f7c;
}

.legal-page p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.legal-page li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f7c;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e4a61;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #888;
}

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

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

.cookie-table th {
    background-color: #2c5f7c;
    color: #fff;
    font-weight: 600;
}

.cookie-table td {
    color: #666;
}

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

    .hero-overlay h1 {
        font-size: 32px;
    }

    .intro-grid,
    .services-grid,
    .features-grid,
    .values-grid {
        flex-direction: column;
    }

    .booking-wrapper {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: auto;
        height: 250px;
    }

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

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

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

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