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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
}

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

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

.main-nav a:hover {
    color: #6366f1;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

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

.intro-section {
    background: #f9fafb;
}

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

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

.split-text-block,
.split-image-block,
.split-form-block {
    flex: 1;
}

.split-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.split-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.inline-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #6366f1;
    transition: border-color 0.3s;
}

.inline-link:hover {
    border-color: transparent;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 16px;
}

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

.service-select-btn:hover {
    background: #4f46e5;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.main-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    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: #6366f1;
}

.form-group select:disabled {
    background: #f3f4f6;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #4f46e5;
}

.main-footer {
    background: #1f2937;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column p {
    color: #d1d5db;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

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

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

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

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

.back-button {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 36px;
    background: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-button:hover {
    background: #4f46e5;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #4b5563;
}

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

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: #4b5563;
}

.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 800;
}

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

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

.services-page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

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

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

.contact-page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.contact-page-header h1 {
    font-size: 48px;
    font-weight: 800;
}

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

.contact-info-grid {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

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

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

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

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

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

    .service-card {
        min-width: 100%;
    }

    .contact-info-grid {
        flex-direction: column;
    }
}
