* {
    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: #2d3748;
    background-color: #ffffff;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

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

.main-nav a:hover {
    color: #63b3ed;
}

.ad-notice {
    font-size: 12px;
    color: #cbd5e0;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.hero-image {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #4a5568;
}

.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-text {
    color: #ffffff;
    max-width: 700px;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: #3182ce;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #718096;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #4a5568;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a202c;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

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

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

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

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

.value-card img {
    width: 100%;
    height: 200px;
    background-color: #e2e8f0;
}

.value-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #1a202c;
}

.value-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #4a5568;
}

.services-highlight {
    padding: 80px 0;
    background-color: #edf2f7;
}

.services-highlight h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.service-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.service-image {
    flex: 0 0 400px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

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

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

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-duration {
    font-size: 14px;
    color: #718096;
    padding: 6px 12px;
    background-color: #edf2f7;
    border-radius: 4px;
}

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

.btn-select-service {
    background-color: #38a169;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #2f855a;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3182ce;
}

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

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

.trust-section {
    padding: 80px 0;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f7fafc;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #2d3748;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #718096;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
}

.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;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #38a169;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #2f855a;
}

.btn-cookie-reject {
    background-color: #718096;
}

.btn-cookie-reject:hover {
    background-color: #4a5568;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #edf2f7;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    color: #4a5568;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a202c;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.image-section {
    padding: 40px 0;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.two-column-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.column-text {
    flex: 1;
    min-width: 300px;
}

.column-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.column-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.column-image {
    flex: 1;
    min-width: 300px;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #cbd5e0;
}

.values-detailed {
    padding: 80px 0;
    background-color: #f7fafc;
}

.values-detailed h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a202c;
}

.approach-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #edf2f7;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.services-full {
    padding: 60px 0;
}

.service-full-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    flex-wrap: wrap;
}

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

.service-full-image {
    flex: 1;
    min-width: 300px;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #cbd5e0;
}

.service-full-content {
    flex: 1;
    min-width: 300px;
}

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

.service-full-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-full-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-full-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-full-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
    align-items: center;
}

.service-difficulty,
.service-group {
    font-size: 14px;
    color: #718096;
    padding: 6px 12px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
}

.info-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.info-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.info-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #cbd5e0;
}

.faq-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.how-to-reach {
    padding: 60px 0;
}

.how-to-reach h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.how-to-reach p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a202c;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.7;
}

.selected-service-info {
    margin: 40px 0;
    padding: 25px;
    background-color: #e6fffa;
    border-left: 4px solid #38b2ac;
    border-radius: 4px;
    text-align: left;
}

.selected-service-info p {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 5px;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    margin: 40px 0;
}

.contact-reminder {
    margin-top: 50px;
    padding: 20px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.contact-reminder p {
    font-size: 16px;
    color: #2d3748;
}

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

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #3182ce;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        height: 400px;
    }

    .main-nav {
        gap: 15px;
    }

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

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

    .service-image {
        flex: none;
        width: 100%;
        min-height: 250px;
    }

    .service-full-item,
    .service-full-item:nth-child(even) {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .two-column-layout {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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