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

.main-nav {
    background: #0a1628;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 0.85rem;
    color: #9ca3af;
    padding: 0.4rem 0.8rem;
    border: 1px solid #374151;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(135deg, #0f2847 0%, #1a3a5c 100%);
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #1f2937;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.info-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.info-image {
    flex: 1;
    background: #e5e7eb;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-content {
    flex: 1;
    padding: 4rem;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.info-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.process-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.process-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.process-card p {
    color: #6b7280;
    line-height: 1.7;
}

.insight-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.insight-content {
    flex: 1.2;
    padding: 5rem 4rem;
}

.insight-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.insight-content > p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.insight-image {
    flex: 0.8;
    background: #d1d5db;
}

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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 6px 16px rgba(74,144,226,0.12);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: 600;
}

.service-price {
    font-size: 1.3rem;
    color: #4a90e2;
    font-weight: 700;
}

.service-item p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.select-service {
    padding: 0.75rem 2rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 5rem 2rem;
    background: #0f2847;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    color: #9ca3af;
    font-size: 0.95rem;
}

.form-section {
    padding: 5rem 2rem;
    background: #f3f4f6;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form select {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #4a90e2;
}

.submit-button {
    padding: 1rem 2rem;
    background: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fef3c7;
    border-top: 3px solid #f59e0b;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #92400e;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background: #0a1628;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #4a90e2;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #357abd;
}

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

.cookie-reject:hover {
    background: #4b5563;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.thanks-service {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border: 1px solid #bfdbfe;
}

.thanks-service strong {
    color: #1e40af;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.back-button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .hero-split,
    .info-split,
    .insight-split {
        flex-direction: column;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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