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

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    display: flex;
    align-items: center;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

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

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

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

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

.hero-left {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

.hero-right {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    padding: 80px 0;
}

.intro-left {
    flex: 1;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-left p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    background: #d0d0d0;
    overflow: hidden;
}

.intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section {
    padding: 80px 48px;
    background: #ffffff;
}

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

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666666;
}

.services-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-split {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    min-height: 320px;
}

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

.service-card-left {
    flex: 1;
    background: #d5d5d5;
    overflow: hidden;
}

.service-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-right h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-right p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

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

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.approach-split {
    display: flex;
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-left {
    flex: 1;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-left p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
}

.approach-right {
    flex: 1;
    background: #d0d0d0;
    overflow: hidden;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section {
    padding: 80px 48px;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.testimonial-item {
    flex: 1;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.form-section {
    padding: 80px 48px;
    background: #f8f9fa;
}

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

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

.form-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    color: #555555;
}

.form-right {
    flex: 1;
}

#mainForm {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.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;
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #7f8c8d;
}

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

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

.disclaimer-section {
    padding: 48px 64px;
    background: #ecf0f1;
    text-align: center;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 64px 48px;
    background: #2c3e50;
    color: #ffffff;
    gap: 48px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column ul {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

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

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

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

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

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
}

.page-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.page-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 8px;
}

.contact-split {
    display: flex;
    padding: 80px 48px;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    flex: 1;
}

.contact-left h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-info {
    margin-bottom: 32px;
}

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

.contact-info p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
    background: #d5d5d5;
    border-radius: 8px;
    overflow: hidden;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
    background: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2ecc71;
}

.thanks-content p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-content .cta-primary {
    display: inline-block;
}

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .header-right {
        flex-direction: column;
        gap: 16px;
    }

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

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

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

    .footer-split {
        flex-direction: column;
        gap: 32px;
    }

    .hero-left,
    .intro-left,
    .approach-left,
    .form-left {
        padding: 40px 24px;
    }

    .hero-right,
    .intro-right,
    .approach-right {
        min-height: 300px;
    }

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

    .section-header-centered h2 {
        font-size: 28px;
    }
}