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

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

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
    margin: 0 20px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 80px 60px;
    background: #f8f9fa;
}

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

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1a252f;
}

.insight-split {
    display: flex;
    min-height: 500px;
}

.insight-image,
.insight-text {
    flex: 1;
}

.insight-image {
    position: relative;
    overflow: hidden;
}

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

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

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.services-intro {
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
}

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

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

.service-item-split {
    display: flex;
    min-height: 450px;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-content,
.service-image {
    flex: 1;
}

.service-content {
    padding: 60px 50px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.service-image {
    position: relative;
    overflow: hidden;
}

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

.select-service {
    padding: 14px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #2980b9;
}

.contact-form-section {
    padding: 80px 20px;
    background: #ecf0f1;
}

.form-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-info,
.form-container {
    flex: 1;
}

.form-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1a252f;
}

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

.trust-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #ffffff;
}

.testimonials-split {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.9;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col p {
    color: #b0b0b0;
    font-size: 15px;
}

.footer-col a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-split,
    .insight-split,
    .service-item-split,
    .form-split,
    .testimonials-split {
        flex-direction: column;
    }

    .service-item-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .insight-text,
    .service-content {
        padding: 40px 30px;
    }

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

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .ad-disclosure {
        margin: 0;
    }

    .footer-content {
        flex-direction: column;
    }
}