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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-text-content {
    max-width: 600px;
}

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

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

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

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

.btn-cta {
    display: inline-block;
    background-color: #d4af37;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #b8991f;
}

.intro-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.split-image {
    flex: 1;
    background-color: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a2847;
    font-weight: 700;
}

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

.services-preview {
    padding: 100px 0;
    background-color: #fafbfc;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2847;
    font-weight: 700;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 20px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2847;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin-top: 16px;
}

.approach-section {
    padding: 100px 0;
}

.form-section {
    padding: 100px 0;
    background-color: #f5f7fa;
}

.form-wrapper-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2847;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.form-benefits {
    list-style: none;
    margin-top: 32px;
}

.form-benefits li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #1a2847;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c3e50;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 11px;
    line-height: 1.5;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2847;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 16px 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;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #d4af37;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b8991f;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background-color: #1a2847;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

.about-content {
    padding: 80px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2847;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2847;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.team-approach {
    padding: 80px 0;
}

.process-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

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

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2847;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.cta-section {
    padding: 100px 0;
}

.cta-box {
    background-color: #1a2847;
    color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-detail-section {
    padding: 80px 0;
}

.service-detail-section.alt-bg {
    background-color: #fafbfc;
}

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2847;
    font-weight: 700;
}

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

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

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

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a2847;
    font-weight: 700;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #d4af37;
    font-size: 20px;
}

.service-pricing {
    background-color: #f5f7fa;
    padding: 24px;
    border-radius: 6px;
    margin-top: 32px;
}

.price-label {
    font-size: 14px;
    color: #6b7280;
    margin-right: 8px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a2847;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2847;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a2847;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.contact-note {
    margin-top: 40px;
    background-color: #fef3c7;
    padding: 24px;
    border-radius: 6px;
}

.contact-note h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #92400e;
    font-weight: 700;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #78350f;
    margin-bottom: 0;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a2847;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2847;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #f0fdf4;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
    font-size: 16px;
    color: #166534;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a2847;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-icon {
    width: 48px;
    height: 48px;
    background-color: #d4af37;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a2847;
    font-weight: 700;
}

.step-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a2847;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2847;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 700;
    color: #1a2847;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .split-layout,
    .split-layout.reverse,
    .service-detail-split,
    .service-detail-split.reverse,
    .form-wrapper-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .hero-text-content h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .section-header-centered h2,
    .section-title-centered,
    .cta-box h2,
    .thanks-content h1 {
        font-size: 32px;
    }

    .split-content h2,
    .service-detail-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .values-grid,
    .process-steps {
        flex-direction: column;
    }
}