* {
    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: #333;
    background: #fff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: #4CAF50;
    color: #fff;
}

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

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

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: #f8fafc;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e293b;
}

.hero-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

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

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

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary-large {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

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

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

.split-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
}

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

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1e293b;
}

.service-card p {
    padding: 0 24px;
    color: #475569;
    font-size: 15px;
    margin-bottom: 20px;
}

.service-card .price {
    padding: 0 24px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.cta-center {
    text-align: center;
}

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

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #475569;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.process-section {
    padding: 100px 0;
    background: #1e293b;
    color: #fff;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.process-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-steps {
    flex: 1;
}

.step {
    margin-bottom: 40px;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.step p {
    color: #cbd5e1;
    font-size: 16px;
}

.process-visual {
    flex: 1;
    background-color: #334155;
    border-radius: 8px;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.form-intro p {
    font-size: 17px;
    color: #475569;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}

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

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

.form-group textarea {
    resize: vertical;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: #94a3b8;
    max-width: 800px;
    margin: 20px auto 0;
}

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

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

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

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

.services-page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detail-text {
    flex: 2;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-detail-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #475569;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-detail-sidebar {
    flex: 1;
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

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

.service-cta {
    margin-top: 20px;
}

.about-hero {
    padding: 100px 0;
    background: #f8fafc;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-hero p {
    font-size: 20px;
    color: #475569;
    max-width: 800px;
}

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

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

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e293b;
}

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

.contact-hero {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

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

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.contact-item p {
    font-size: 17px;
    color: #475569;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 24px;
}

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

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1e293b;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #334155;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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