* {
    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: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

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

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

.nav a:hover {
    color: #27ae60;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    padding: 60px 40px;
    background-color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #34495e;
    min-height: 600px;
}

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

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-section h2 {
    font-size: 36px;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.intro-section p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.problem-amplification {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.split-layout {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.content-left,
.content-right {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.content-left h3,
.content-right h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 600;
}

.content-left p,
.content-right p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #34495e;
    line-height: 1.6;
}

.problem-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.image-right,
.image-left {
    flex: 1;
    overflow: hidden;
    background-color: #95a5a6;
    min-height: 500px;
}

.image-right img,
.image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h4 {
    font-size: 22px;
    color: #2c3e50;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 16px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 24px;
}

.service-link {
    display: block;
    padding: 16px 24px;
    text-align: center;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-link:hover {
    background-color: #229954;
}

.trust-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #5a6c7d;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #ffffff;
}

.testimonials-inline h3 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 48px;
    font-weight: 600;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 36px;
    margin-bottom: 28px;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

.benefit-block h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.benefit-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 48px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

.disclaimer {
    font-size: 13px;
    color: #5a6c7d;
    line-height: 1.7;
    text-align: center;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

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

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

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

.footer-column a:hover {
    color: #27ae60;
}

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

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

.page-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-approach {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.team-approach h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.approach-item h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.expertise-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.expertise-list {
    list-style: none;
    margin: 24px 0;
}

.expertise-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.values-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 48px;
    font-weight: 600;
}

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

.value-item {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.value-item h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.cta-about {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-about p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

.service-detail-block {
    padding: 60px 0;
}

.service-detail-block.alternate {
    background-color: #f8f9fa;
}

.service-info {
    flex: 1;
    padding: 60px;
}

.service-image {
    flex: 1;
    overflow: hidden;
    background-color: #95a5a6;
    min-height: 500px;
}

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

.service-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.service-info p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-info h4 {
    font-size: 20px;
    color: #2c3e50;
    margin: 28px 0 16px;
    font-weight: 600;
}

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

.service-info ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.service-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 20px;
}

.service-guarantee {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.service-guarantee h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 600;
}

.service-guarantee p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cta-services {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 600;
}

.cta-services p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.contact-map {
    flex: 1;
    overflow: hidden;
    background-color: #95a5a6;
    min-height: 600px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 36px;
    font-weight: 700;
}

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

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

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

.contact-faq {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 48px;
    font-weight: 600;
}

.faq-item {
    background-color: #ffffff;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.faq-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-service {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #27ae60;
}

.thanks-info {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-info ol {
    padding-left: 24px;
}

.thanks-info ol li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 48px 0 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 32px 0 16px;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    color: #2c3e50;
    margin: 24px 0 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page em {
    color: #7f8c8d;
    font-size: 14px;
}

.legal-page ul {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .hero-content,
    .split-layout {
        flex-direction: column;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-text,
    .hero-image,
    .content-left,
    .content-right,
    .image-left,
    .image-right,
    .service-info,
    .service-image,
    .contact-info,
    .contact-map {
        min-height: auto;
    }

    .hero-image,
    .image-left,
    .image-right,
    .service-image,
    .contact-map {
        min-height: 400px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions a {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 14px;
    }

    .ad-label {
        width: 100%;
        text-align: center;
    }

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

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

    .intro-section h2,
    .values-section h2,
    .contact-faq h2 {
        font-size: 28px;
    }

    .services-preview h2,
    .benefits-reveal h2,
    .team-approach h2 {
        font-size: 32px;
    }

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

    .content-left,
    .content-right,
    .service-info,
    .contact-info {
        padding: 40px 20px;
    }

    .service-card {
        min-width: 100%;
    }

    .benefits-split,
    .approach-grid {
        flex-direction: column;
    }

    .contact-form {
        padding: 32px 20px;
    }

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

    .legal-page h1 {
        font-size: 32px;
    }

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

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}