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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a252f;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

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

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

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

.header {
    background: #fff;
    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;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: #ffeaa7;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #2d3436;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-text {
    color: #fff;
    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;
    line-height: 1.6;
}

.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
}

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

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

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

.story-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--primary-color);
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-section img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
}

.problem-section {
    background: var(--light-bg);
    padding: 80px 0;
}

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

.problem-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.problem-item p {
    line-height: 1.7;
}

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.insight-section > p {
    font-size: 18px;
    margin-bottom: 50px;
    text-align: center;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 50px;
}

.insight-point {
    padding-left: 25px;
    border-left: 4px solid var(--secondary-color);
}

.insight-point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.insight-point p {
    font-size: 17px;
    line-height: 1.7;
}

.trust-section {
    background: var(--dark-bg);
    color: #fff;
    padding: 80px 0;
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.services-preview {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 20px 15px;
    line-height: 1.6;
    color: #555;
}

.service-card .price {
    display: block;
    margin: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefits-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-large {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-large img {
    flex: 1;
    min-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
}

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

.benefit-item {
    flex: 1;
    min-width: 240px;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    line-height: 1.6;
    color: #555;
}

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

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    margin-bottom: 35px;
    line-height: 1.7;
}

.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: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: var(--success-color);
    color: #fff;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
}

.final-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    line-height: 1.7;
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff8e1;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    border-left: 4px solid #ffa726;
    padding-left: 20px;
}

.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: var(--success-color);
    color: #fff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--success-color);
}

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

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin: 25px 0;
}

.service-detail-content ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    font-weight: 600;
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.about-story {
    padding: 80px 0;
}

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

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.values-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    line-height: 1.7;
}

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

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-size: cover;
    background-position: center;
}

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

.team-member p {
    color: #666;
}

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

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.commitment-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

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

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    line-height: 1.7;
    color: #555;
}

.contact-note {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    line-height: 1.7;
    color: #555;
}

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

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
    color: #555;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

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

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

    .hero {
        height: 500px;
    }

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

    .benefit-large {
        flex-direction: column;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

html {
    scroll-behavior: smooth;
}