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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

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

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

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

.ad-label {
    font-size: 12px;
    color: var(--gray);
    padding: 4px 12px;
    background: var(--light-bg);
    border-radius: 4px;
    font-style: italic;
}

.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;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav a {
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.ad-label-mobile {
    font-size: 12px;
    color: var(--gray);
    padding: 12px 0;
    font-style: italic;
}

.hidden {
    display: none;
}

.hero-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 80px 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.hero-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
    color: var(--white);
}

.hero-text-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-card p {
    font-size: 20px;
    opacity: 0.9;
}

.hero-image-card {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.story-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.insight-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.insight-image-card {
    flex: 1;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

.insight-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-text-card {
    flex: 1;
}

.insight-text-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.insight-text-card p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

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

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
}

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

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

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.approach-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.approach-card {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-card h2 {
    font-size: 38px;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

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

.step-card {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.step-card p {
    font-size: 16px;
    line-height: 1.6;
}

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

.trust-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.trust-text-card {
    flex: 1;
}

.trust-text-card h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.trust-list li {
    font-size: 18px;
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.trust-image-card {
    flex: 1;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

.trust-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    background: var(--light-bg);
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

.cta-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: var(--white);
    color: var(--accent-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--gray);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px 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(--accent-color);
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: var(--white);
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

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

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

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

.btn-cookie-reject {
    background: var(--light-bg);
    color: var(--text-color);
}

.btn-cookie-reject:hover {
    background: var(--border-color);
}

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

    .hamburger {
        display: flex;
    }

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

    .hero-grid,
    .insight-grid,
    .trust-grid,
    .approach-steps,
    .testimonials-grid,
    .footer-grid {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 28px;
    }

    .benefit-card,
    .service-card {
        flex: 1 1 100%;
    }

    .story-card,
    .form-card {
        padding: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}