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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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: 250px;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #ecf0f1;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 0;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.hero-right {
    overflow: hidden;
}

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

.intro-section,
.problem-section,
.trust-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-half {
    flex: 1;
    min-width: 0;
}

.content-half img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.content-half h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-half p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.insight-block {
    background: #1a1a1a;
    color: white;
    padding: 100px 40px;
    margin: 100px 0;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-left {
    flex: 1.2;
}

.insight-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #ffffff;
}

.insight-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.insight-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #27ae60;
    display: block;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 16px;
    color: #e0e0e0;
}

.services-intro {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 19px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #27ae60;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 24px;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: #495057;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

.select-service:hover {
    background: #229954;
}

.testimonial-block {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.methodology-section {
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    padding: 100px 40px;
    margin: 100px 0;
}

.method-container {
    max-width: 1400px;
    margin: 0 auto;
}

.method-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
}

.method-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 72px;
    font-weight: 800;
    color: #27ae60;
    opacity: 0.3;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.cta-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.cta-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #1a1a1a;
    padding: 60px;
    border-radius: 12px;
}

.cta-left {
    flex: 1.5;
}

.cta-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-left p {
    font-size: 18px;
    color: #e0e0e0;
}

.cta-right {
    flex: 1;
    text-align: right;
}

.cta-large {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #229954;
    transform: scale(1.05);
}

.form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.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;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    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%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.disclaimer-content {
    background: #fff9e6;
    border-left: 4px solid #f39c12;
    padding: 32px;
    border-radius: 6px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #27ae60;
}

.contact-info p {
    margin: 8px 0;
}

.main-footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

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

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

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

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 2;
    text-decoration: none;
    display: block;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

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

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

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

    .method-steps {
        flex-direction: column;
    }
}

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero-left {
        padding: 40px 20px;
    }

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

    .intro-section,
    .problem-section,
    .trust-section,
    .services-intro {
        padding: 0 20px;
        margin: 60px auto;
    }

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

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