* {
    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: #333;
    overflow-x: hidden;
}

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

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

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

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

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

.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;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

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

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

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

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

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

.main-nav a:hover {
    color: #2c5f8d;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 600px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #2c5f8d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #234a6d;
    transform: translateY(-2px);
}

.intro-block {
    padding: 80px 20px;
    background: white;
}

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

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

.feature-section {
    padding: 80px 20px;
}

.bg-light {
    background: #f8f9fa;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a1a1a;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 20px;
    background: white;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
}

.service-image {
    flex: 1;
    background: #e9ecef;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section {
    padding: 100px 20px;
    text-align: center;
}

.bg-dark {
    background: #1a1a1a;
    color: white;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ddd;
}

.cta-button-light {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-wrapper > p {
    margin-bottom: 30px;
    color: #666;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d;
}

.btn-submit {
    padding: 15px 35px;
    background: #2c5f8d;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234a6d;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: #bbb;
    font-size: 14px;
}

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content .selected-service {
    font-weight: 600;
    color: #2c5f8d;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

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

.about-intro {
    padding: 80px 20px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background: #e9ecef;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 80px 20px;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

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

.team-section {
    padding: 80px 20px;
    background: white;
}

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

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.approach-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

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

.approach-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.mission-section {
    padding: 80px 20px;
}

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

.mission-section p {
    font-size: 17px;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-detail {
    padding: 60px 20px;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-content {
    flex: 1;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 25px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f8d;
    margin-right: 10px;
}

.price-period {
    font-size: 16px;
    color: #666;
}

.service-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #2c5f8d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #234a6d;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    background: #e9ecef;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-benefits {
    padding: 80px 20px;
}

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

.services-benefits p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-container {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

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

.contact-map {
    flex: 1;
    background: #e9ecef;
    min-height: 500px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

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

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-container .last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

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

    .mobile-toggle {
        display: flex;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

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

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

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

    .form-row {
        flex-direction: column;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

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

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

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

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

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

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

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