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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #2a3a4d;
}

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

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

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

.value-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.value-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.split-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #e5e7eb;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.split-content-right h2,
.split-content-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.inline-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.2s;
}

.inline-link:hover {
    color: #0052a3;
}

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

.split-content-left {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.split-image-right {
    flex: 1;
    overflow: hidden;
    background-color: #e5e7eb;
}

.services-cards {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.services-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e5e7eb;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 16px 24px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 20px 24px;
}

.select-service {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    margin: 0 24px 24px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #f9fafb;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.submit-button {
    width: 100%;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #0052a3;
}

.footer {
    background-color: #0a2540;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #d0d5db;
}

.footer-col a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #1a3a52;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #6b7280;
    margin-top: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #6ba3ff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #4a4a4a;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #333333;
}

.page-hero {
    padding: 80px 40px;
    background-color: #f9fafb;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

.content-section {
    padding: 80px 40px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

.stats-section {
    background-color: #f9fafb;
}

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4a4a4a;
}

.cta-section {
    padding: 80px 40px;
    background-color: #0a2540;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #d0d5db;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 40px;
}

.service-detail {
    display: flex;
    margin-bottom: 80px;
    gap: 50px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e5e7eb;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.contact-page {
    padding: 60px 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.contact-map img {
    width: 100%;
    height: 400px;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-page {
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

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

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

.thanks-section {
    padding: 80px 40px;
    min-height: 500px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0066cc;
}

.thanks-content > p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: #f0f7ff;
    border: 2px solid #0066cc;
    border-radius: 8px;
    padding: 24px;
    margin: 32px auto;
    max-width: 600px;
}

.selected-service-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.selected-service-box p {
    font-size: 18px;
    color: #0066cc;
}

.thanks-content h2 {
    font-size: 32px;
    margin: 50px 0 30px 0;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background-color: #f9fafb;
    color: #1a1a1a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #d0d0d0;
    transition: background-color 0.2s;
}

.secondary-button:hover {
    background-color: #e5e7eb;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-info,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .hero-content,
    .hero-image,
    .split-image-left,
    .split-image-right,
    .split-content-left,
    .split-content-right {
        min-height: 400px;
    }

    .service-card {
        width: calc(50% - 15px);
    }

    .cards-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .value-section h2,
    .split-content-right h2,
    .split-content-left h2 {
        font-size: 28px;
    }

    .services-cards h2 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
    }

    .footer-container {
        gap: 30px;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}
