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

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

.ad-disclosure {
    background: #f4f3f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd8;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-right a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #8a7f6f;
}

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

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

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c2c2c;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
    align-self: flex-start;
}

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

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

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

.intro-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

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

.approach-full {
    padding: 100px 40px;
    background: white;
}

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

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

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 260px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.services-split {
    display: flex;
    background: #f4f3f0;
}

.services-content {
    flex: 1.2;
    padding: 80px 60px;
}

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

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

.service-card {
    background: white;
    padding: 32px;
    border-left: 4px solid #2c2c2c;
}

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

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

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: #2c2c2c;
    color: white;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a1a1a;
}

.services-visual {
    flex: 0.8;
    background-size: cover;
    background-position: center;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.cta-submit {
    padding: 16px 40px;
    background: #2c2c2c;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #1a1a1a;
}

.testimonials-split {
    display: flex;
    background: #f9f8f6;
}

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

.testimonials-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.testimonials-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.testimonial {
    margin-bottom: 36px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #7a7a7a;
}

footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: white;
    color: #1a1a1a;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 80px 60px;
    background: white;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.thanks-container .service-info {
    background: #f4f3f0;
    padding: 20px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c2c2c;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-split,
    .testimonials-split {
        flex-direction: column;
    }

    .hero-visual,
    .intro-visual,
    .services-visual,
    .testimonials-visual {
        min-height: 300px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}