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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5a7b;
    --accent-color: #e8740f;
    --text-dark: #1f1f1f;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-section {
    background-color: var(--text-dark);
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 58, 82, 0.7), rgba(26, 58, 82, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--bg-white);
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
}

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

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.cta-button.secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

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

.section-container.narrow {
    max-width: 800px;
}

.section-container.wide {
    max-width: 1400px;
}

.intro-section {
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.problem-section {
    background-color: var(--bg-light);
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
}

.services-preview {
    background-color: var(--bg-white);
}

.services-preview h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 20px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 20px 16px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0 20px 16px;
}

.select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 24px;
    margin: 0 20px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.trust-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--bg-white);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.testimonials-section {
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial .author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

.form-section {
    background-color: var(--bg-white);
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.form-section > .section-container > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
}

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

.disclaimer-section {
    background-color: var(--bg-light);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-size: 14px;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-story {
    background-color: var(--bg-white);
}

.about-story h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-team {
    background-color: var(--bg-light);
}

.about-team h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-member .role {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-approach {
    background-color: var(--bg-white);
}

.about-philosophy {
    background-color: var(--bg-light);
}

.about-philosophy h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-philosophy p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-about {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta-about h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.cta-about p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-detailed {
    background-color: var(--bg-white);
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

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

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

.service-image {
    flex: 0 0 45%;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-info ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-duration,
.service-price {
    font-size: 16px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 18px;
    color: var(--text-dark);
}

.service-price strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
}

.contact-info {
    background-color: var(--bg-white);
}

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

.contact-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-card.full-width {
    flex: 1 1 100%;
}

.contact-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.thanks-section {
    background-color: var(--bg-white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.thanks-details ul {
    list-style: none;
    margin-top: 16px;
}

.thanks-details ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.thanks-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.legal-page {
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    list-style: none;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.legal-page ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 13px;
    }

    .ad-notice {
        display: none;
    }

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

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

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

    .service-card,
    .testimonial,
    .team-member,
    .contact-card {
        flex: 1 1 100%;
    }

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

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

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