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

.ad-disclosure {
    background: #fef3c7;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #92400e;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

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

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.intro-cards {
    padding: 80px 24px;
    background: #f9fafb;
}

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

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

.card-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.intro-card:hover {
    transform: translateY(-4px);
}

.card-icon {
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.intro-card p {
    color: #6b7280;
    font-size: 16px;
}

.story-section {
    padding: 100px 24px;
    background: #ffffff;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #111827;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.text-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: color 0.2s;
}

.text-link:hover {
    color: #1e40af;
}

.story-image-block {
    flex: 1;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

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

.services-preview {
    padding: 100px 24px;
    background: #f3f4f6;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

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

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

.service-content {
    padding: 32px;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1e40af;
}

.btn-select-service.selected {
    background: #10b981;
}

.form-section {
    padding: 100px 24px;
    background: #ffffff;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
}

.form-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
}

.contact-form {
    background: #f9fafb;
    padding: 48px;
    border-radius: 16px;
}

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

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.form-field input[readonly] {
    background: #e5e7eb;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e40af;
}

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 24px;
    background: #eff6ff;
}

.trust-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.trust-grid {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

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

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

.disclaimer {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie.accept {
    background: #10b981;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #059669;
}

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

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

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

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

    .story-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
    }
}

.page-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 100px 24px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.content-section {
    padding: 80px 24px;
    background: #ffffff;
}

.content-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: #111827;
}

.content-wrapper h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: #1f2937;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 24px;
}

.content-wrapper ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #374151;
}

.contact-info {
    background: #f3f4f6;
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.thanks-content {
    text-align: center;
    max-width: 640px;
    padding: 60px 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 36px;
}

.thanks-content .cta-primary {
    background: #2563eb;
    color: #ffffff;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}

.service-detail-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.service-detail-card p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-card .service-price {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    margin: 24px 0;
}
