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

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.header-main {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-main {
    display: flex;
    gap: 32px;
}

.nav-main a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4b5563;
    border-radius: 2px;
}

.hero-card {
    position: relative;
    margin-top: 0;
    background: #0f172a;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1e293b;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.6) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-content-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.intro-card {
    background: #f8fafc;
    padding: 48px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #0f172a;
}

.intro-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.services-grid {
    padding: 80px 0;
    background: #f1f5f9;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: #0f172a;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 22px);
    min-width: 320px;
}

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

.card-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

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

.btn-card:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-card.selected {
    border: 2px solid #2563eb;
}

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

.service-card.selected .btn-card::after {
    content: ' ✓';
}

.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-card-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 280px;
}

.stat-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

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

.process-section .section-title {
    color: white;
}

.process-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
    transition: all 0.3s;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e1;
}

.form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #0f172a;
}

.form-card > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input[readonly] {
    background: #f1f5f9;
    color: #2563eb;
    font-weight: 600;
}

.btn-submit {
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background: #fff8e1;
}

.disclaimer-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #92400e;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

.footer-main {
    background: #0f172a;
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    padding: 24px;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}

.btn-cookie-reject:hover {
    background: #334155;
    color: white;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: white;
    padding: 56px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #0f172a;
}

.thanks-card p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-summary {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-summary strong {
    color: #0f172a;
    font-size: 18px;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.page-content {
    padding: 80px 0;
    background: white;
}

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

.content-card h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #0f172a;
}

.content-card h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.contact-info-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
    border-left: 4px solid #2563eb;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0f172a;
}

.contact-info-card p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 8px;
}

.about-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.about-section {
    margin-bottom: 64px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #0f172a;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

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

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2563eb;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .trust-card-layout {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}