* {
    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: 1.5rem;
    z-index: 1000;
    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: 1.5rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3a8eef;
}

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

.btn-reject:hover {
    border-color: #999;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    flex: 1;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

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

.nav-main a:hover {
    color: #4a9eff;
}

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

.hero-text {
    flex: 1;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: #e5e5e5;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a9eff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

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

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

.intro-image {
    flex: 1;
    background: #e5e5e5;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 5%;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 5%;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.15rem;
    color: #666;
}

.service-cards-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 45%;
    object-fit: cover;
    background: #e5e5e5;
}

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 1rem;
}

.btn-service {
    padding: 0.9rem 1.8rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-service:hover {
    background: #4a9eff;
}

.approach-split {
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.approach-content {
    flex: 1;
    padding: 4rem 5%;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
    background: #e5e5e5;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #4a9eff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #4a9eff;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border-radius: 4px;
}

.cta-secondary:hover {
    background: #4a9eff;
    color: #ffffff;
}

.form-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.2rem 2rem;
    background: #4a9eff;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-submit:hover {
    background: #3a8eef;
}

.footer-content {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #bbb;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background: #2c2c2c;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 5%;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .approach-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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