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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-nav {
    background: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ffd700;
    border-radius: 4px;
}

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

.nav-menu a {
    color: #ffffff;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

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

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 500px;
    padding: 3rem;
}

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

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image,
.intro-image,
.form-image,
.about-image,
.values-image,
.service-detail-image,
.contact-image {
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.benefits-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

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

.intro-content {
    max-width: 500px;
    padding: 3rem;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    margin-bottom: 1rem;
    color: #555;
}

.services-highlight {
    padding: 4rem 2rem;
}

.services-highlight h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item-split {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

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

.service-info {
    flex: 2;
    padding: 2rem;
}

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

.service-info p {
    color: #666;
}

.service-price {
    flex: 1;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

.form-section-split {
    background: #f8f9fa;
}

.form-content {
    max-width: 500px;
    padding: 3rem;
}

.form-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-content p {
    margin-bottom: 2rem;
    color: #555;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn-submit {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.trust-section {
    padding: 4rem 2rem;
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
    cursor: pointer;
}

.footer-section p {
    color: #d1d5db;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.5;
}

.disclaimer strong {
    color: #ffd700;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cookie {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.btn-cookie-alt {
    background: #6b7280;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background: #4b5563;
    cursor: pointer;
}

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
}

.about-intro-split {
    padding: 4rem 0;
}

.about-content {
    max-width: 500px;
    padding: 3rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
}

.mission-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.mission-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-section p {
    text-align: center;
    font-size: 1.125rem;
    color: #555;
}

.values-split {
    padding: 4rem 0;
}

.values-content {
    max-width: 500px;
    padding: 3rem;
}

.values-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.value-item p {
    color: #555;
}

.process-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.process-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: #555;
}

.services-detail {
    padding: 2rem 0;
}

.service-detail-split {
    margin-bottom: 3rem;
}

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

.service-detail-content {
    max-width: 500px;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-includes {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-includes li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-detail-price {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-right: 0.5rem;
}

.btn-service {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.contact-split {
    padding: 4rem 0;
}

.contact-info {
    max-width: 500px;
    padding: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.contact-detail p {
    color: #555;
}

.contact-cta {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: #555;
}

.btn-cta-secondary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta-secondary:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #555;
}

.selected-service-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-weight: 600;
    color: #2563eb;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    background: #6b7280;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #4b5563;
    cursor: pointer;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.update-date {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1d4ed8;
    cursor: pointer;
}

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

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

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

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

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

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

    .process-steps {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
