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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.nav-right a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #0066cc;
}

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

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

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

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

.hero-image {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #0052a3;
}

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

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

.intro-image {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
}

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

.intro-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-grid {
    display: flex;
    gap: 0;
    background: #0066cc;
}

.value-item {
    flex: 1;
    padding: 60px 40px;
    background: #0066cc;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.value-item:last-child {
    border-right: none;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

.approach-split {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

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

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

.phase {
    margin-bottom: 32px;
}

.phase h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0066cc;
}

.phase p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.approach-visual {
    flex: 1;
    background: #f0f0f0;
    overflow: hidden;
}

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

.services-preview {
    padding: 80px 60px;
    background: #fafafa;
}

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

.services-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #0066cc;
}

.service-card.featured {
    border-color: #0066cc;
    position: relative;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 24px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.service-card li:last-child {
    border-bottom: none;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #0052a3;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
}

.consultation-form h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.consultation-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

.selected-service-display {
    padding: 14px;
    background: #f0f7ff;
    border: 1px solid #0066cc;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #0066cc;
}

.trust-split {
    display: flex;
    min-height: 500px;
    background: #ffffff;
}

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

.trust-image {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
}

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

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-left: 4px solid #0066cc;
}

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

.testimonial cite {
    font-size: 14px;
    color: #777;
    font-style: normal;
}

.final-cta-split {
    display: flex;
    min-height: 400px;
    background: #0066cc;
}

.cta-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-content .cta-primary {
    background: #ffffff;
    color: #0066cc;
    align-self: flex-start;
}

.cta-content .cta-primary:hover {
    background: #f0f0f0;
}

.cta-visual {
    flex: 1;
    background: #0052a3;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #ccc;
    font-size: 15px;
}

.disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #0066cc;
    padding: 20px 60px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.cookie-content a {
    color: #0066cc;
}

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

.cookie-accept {
    padding: 10px 24px;
    background: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: #0052a3;
}

.cookie-reject {
    padding: 10px 24px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.page-header {
    background: #0066cc;
    color: #ffffff;
    padding: 100px 60px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

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

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 16px;
    color: #333;
}

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

.page-content ul {
    margin: 16px 0 16px 30px;
}

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

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

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #f9f9f9;
}

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

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0066cc;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

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

.services-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.service-detail {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
}

.service-detail h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

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

.service-detail ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

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

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0066cc;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .trust-split,
    .final-cta-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .service-detail {
        flex: 1 1 100%;
    }
}