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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.problem-section,
.insight-section,
.story-section,
.services-preview,
.testimonial-section,
.pricing-reveal,
.cta-section,
.disclaimer-section {
    padding: 80px 30px;
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.problem-section {
    background: #f8f9fa;
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    background: #ecf0f1;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.trust-section {
    background: #2c3e50;
    color: #fff;
    padding: 80px 30px;
}

.trust-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-left: 4px solid #3498db;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
}

.services-showcase {
    max-width: 1300px;
    margin: 0 auto;
}

.service-block {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

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

.testimonial-section {
    background: #f8f9fa;
}

.testimonial {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid #3498db;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
}

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

.pricing-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.pricing-intro p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.price-card.featured {
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    min-height: 55px;
}

.price {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-note {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
}

.cta-section {
    background: #ecf0f1;
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

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

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex-basis: 100%;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 50px 30px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(236,240,241,0.2);
    text-align: center;
}

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

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-page p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #34495e;
}

.services-page {
    padding: 80px 30px;
}

.services-page-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-page-header p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
}

.service-item h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-item p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 30px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-page a:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .ad-disclosure {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

    .trust-grid {
        flex-direction: column;
    }

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

    .pricing-grid {
        flex-direction: column;
    }

    .price-card.featured {
        transform: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}