* {
    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: #1a1a1a;
    background: #ffffff;
}

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

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

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

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

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

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

.cookie-btn.accept {
    background: #0066cc;
    color: white;
}

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

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.ad-disclosure {
    font-size: 12px;
    color: #888888;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background: #e5e5e5;
    position: relative;
    overflow: hidden;
}

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

.stats-bar {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #1a1a1a;
    color: white;
}

.stat-item {
    flex: 1;
    padding: 48px 40px;
    text-align: center;
    border-right: 1px solid #333333;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #0066cc;
}

.stat-item p {
    font-size: 15px;
    color: #cccccc;
}

.problem-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.problem-content {
    flex: 1.5;
}

.problem-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-card {
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.problem-visual {
    flex: 1;
    background: #e5e5e5;
    position: relative;
    min-height: 600px;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

.insight-left {
    flex: 0.8;
    background: #e5e5e5;
    position: relative;
}

.insight-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right {
    flex: 1.2;
    padding: 80px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-right h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #ffffff;
}

.insight-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #cccccc;
}

.insight-right a {
    color: #66aaff;
    text-decoration: none;
}

.insight-right a:hover {
    text-decoration: underline;
}

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

.services-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.services-split {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.service-large {
    flex: 1.2;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-container {
    width: 100%;
    height: 280px;
    background: #e5e5e5;
    position: relative;
}

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

.service-details {
    padding: 32px;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

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

.select-service:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.service-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-compact {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    padding: 24px;
    border-radius: 8px;
}

.service-compact h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-compact p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-compact .service-price {
    font-size: 24px;
    margin-bottom: 16px;
}

.services-additional {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    gap: 40px;
}

.service-row div {
    flex: 1;
}

.service-row h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-row p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-row .service-price {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-row .select-service {
    width: auto;
    flex-shrink: 0;
}

.testimonials-inline {
    max-width: 1400px;
    margin: 80px auto;
    padding: 80px 40px;
    background: #0066cc;
    color: white;
}

.testimonials-inline h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-flow {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.form-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.form-container {
    flex: 1.2;
    padding: 80px 60px;
    background: #f8f9fa;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.selected-service-display {
    padding: 16px 20px;
    background: #0066cc;
    color: white;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    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: #0066cc;
}

.form-group textarea {
    resize: vertical;
}

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

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

.form-image {
    flex: 0.8;
    background: #e5e5e5;
    position: relative;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 32px 40px;
    background: #fff8e6;
    border-left: 4px solid #ffb800;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 32px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #999999;
}

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

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

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

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 32px;
    padding-top: 32px;
    border-top: 1px solid #333333;
}

.footer-references h4 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #999999;
}

.footer-references ol li a {
    color: #66aaff;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

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

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

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

    .problem-section {
        flex-direction: column;
    }

    .insight-section {
        flex-direction: column;
    }

    .services-split {
        flex-direction: column;
    }

    .testimonial-flow {
        flex-direction: column;
    }

    .form-section {
        flex-direction: column;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 45%;
    }
}

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

    .hero-text {
        padding: 60px 30px;
    }

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

    .stats-bar {
        flex-direction: column;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #333333;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

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

    .footer-col {
        flex: 1 1 100%;
    }
}