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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    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: 300px;
}

.cookie-content a {
    color: #f4c430;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #f4c430;
    color: #000;
}

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

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

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

.main-nav {
    background: #1a1a1a;
    padding: 20px 0;
    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;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #f4c430;
    letter-spacing: 1px;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #444;
    border-radius: 3px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

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

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #4a4a4a;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.cta-primary:hover {
    background: #f4c430;
    color: #1a1a1a;
    border-color: #f4c430;
}

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

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

.content-half {
    flex: 1;
    padding: 80px 60px;
}

.content-half img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

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

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

.problem-section {
    background: #fff;
}

.insight-section {
    background: #f8f8f8;
}

.trust-section {
    padding: 100px 40px;
    background: #1a1a1a;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #f4c430;
}

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

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

.benefits-section {
    background: #fff;
}

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

.benefits-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f4c430;
    font-weight: 700;
    font-size: 20px;
}

.services-section {
    padding: 100px 40px;
    background: #f8f8f8;
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #f4c430;
    padding: 20px 25px 10px;
}

.service-card .btn-select {
    margin: 20px 25px 25px;
    padding: 12px 30px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card .btn-select:hover {
    background: #f4c430;
    color: #1a1a1a;
}

.form-section {
    padding: 100px 40px;
    background: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selected-service {
    background: #f4c430;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #1a1a1a;
    display: none;
}

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

.contact-form label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f4c430;
}

.btn-submit {
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #f4c430;
    color: #1a1a1a;
}

.final-cta {
    padding: 100px 40px;
    background: #1a1a1a;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #f4c430;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #f4c430;
    color: #1a1a1a;
}

.main-footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

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

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    font-size: 14px;
    color: #666;
}

.page-header {
    padding: 80px 40px 60px;
    background: #f8f8f8;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.page-content h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.page-content li {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

.contact-info h3 {
    margin-top: 0;
}

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.thanks-container p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-container .selected-service-info {
    background: #f4c430;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-container .cta-primary {
    margin-top: 40px;
}

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

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

    .nav-container {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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

    .hero-left p {
        font-size: 18px;
    }

    .content-half {
        padding: 40px 30px;
    }

    .content-half h2 {
        font-size: 28px;
    }

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

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

    .page-header h1 {
        font-size: 36px;
    }
}