* {
    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;
}

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

.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;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: white;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 5px 10px;
    border-left: 2px solid #e0e0e0;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 15px 0;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.problem-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.problem-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    padding: 90px 20px;
    background-color: #ecf0f1;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 20px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 15px;
    color: #34495e;
    font-size: 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 20px;
}

.select-service-btn {
    margin: 0 20px 25px;
    padding: 12px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.insight-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
    line-height: 1.8;
}

.testimonial-section {
    padding: 90px 20px;
    background-color: #34495e;
    color: #ffffff;
}

.testimonial-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
}

.testimonials-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    border-left: 4px solid #e74c3c;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

.form-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-wrapper > p {
    margin-bottom: 35px;
    font-size: 17px;
    color: #34495e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-story {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
    line-height: 1.8;
}

.about-approach {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.about-approach h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.approach-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.approach-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.about-values {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-values p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #34495e;
    line-height: 1.8;
}

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

.service-detailed {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
}

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

.service-detailed img {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 8px;
    object-fit: cover;
}

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

.service-detailed-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detailed-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.service-detailed-content ul {
    margin: 20px 0 25px 25px;
    color: #34495e;
}

.service-detailed-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 15px;
}

.service-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.contact-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
}

.contact-info-block {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.contact-note-block {
    flex: 1;
    background-color: #34495e;
    padding: 40px;
    border-radius: 8px;
    color: #ffffff;
}

.contact-note-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-note-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-note-block a {
    color: #3498db;
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
    font-size: 17px;
    color: #2c3e50;
}

.return-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.return-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.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;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 30px;
    color: #34495e;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

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

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

    .hamburger {
        display: flex;
    }

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

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

    .intro-content h2,
    .insight-section h2,
    .form-wrapper h2 {
        font-size: 28px;
    }

    .problem-text h3 {
        font-size: 24px;
    }

    .services-preview h2,
    .testimonial-section h2 {
        font-size: 30px;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .service-detailed {
        flex-direction: column;
        gap: 30px;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

    .service-detailed img {
        flex: 1;
        max-width: 100%;
    }

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

    .approach-item {
        flex: 1 1 100%;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 30px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}