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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

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

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

.main-nav a:hover {
    color: #2c5282;
}

.ad-notice {
    font-size: 11px;
    color: #718096;
    background: #f7fafc;
    padding: 6px 12px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-intro {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

.cta-primary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5282;
    font-weight: 700;
}

.content-half p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-half img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.section-header-center {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c5282;
    font-weight: 700;
}

.section-header-center p {
    font-size: 20px;
    color: #718096;
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-img-container {
    flex: 1;
    background: #e2e8f0;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c5282;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.select-service-btn {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #ffffff;
    margin: 80px auto;
    padding: 48px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-modal {
    color: #a0aec0;
    float: right;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c5282;
}

.modal-content h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c5282;
    font-weight: 700;
}

.selected-service-display {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #4a5568;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.trust-section .content-half h2 {
    color: #ffffff;
}

.trust-section .content-half p {
    color: rgba(255, 255, 255, 0.95);
}

.trust-section img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-section-split {
    padding: 100px 0;
    background: #2c5282;
    display: flex;
    align-items: center;
}

.cta-section-split .container-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-content-left {
    flex: 1;
}

.cta-content-left h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-content-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content-right {
    flex: 0 0 auto;
    display: flex;
    gap: 20px;
}

.cta-secondary {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.cta-outline {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: #ffffff;
    color: #2c5282;
    transform: translateY(-2px);
}

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

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 40px;
    background: #ffffff;
    border-left: 4px solid #f6ad55;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #667eea;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 24px;
    z-index: 1500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.btn-reject {
    background: #e2e8f0;
    color: #2c5282;
}

.btn-reject:hover {
    background: #cbd5e0;
    transform: translateY(-2px);
}

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

.hero-content-center h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-content-center p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.about-intro {
    padding: 100px 0;
    background: #ffffff;
}

.approach-section {
    padding: 100px 0;
    background: #f7fafc;
}

.values-section {
    padding: 100px 0;
    background: #ffffff;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background: #f7fafc;
    padding: 40px 32px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c5282;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box-center h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 700;
}

.cta-box-center p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

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

.service-detail-item.reverse-layout .service-detail-split {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c5282;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.service-features {
    margin: 32px 0;
    background: #f7fafc;
    padding: 28px 32px;
    border-radius: 8px;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c5282;
    font-weight: 700;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin: 28px 0;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-cta {
    padding: 80px 0;
    background: #f7fafc;
}

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

.contact-container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

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

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c5282;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5282;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #4a5568;
    margin: 0;
}

.contact-map-side {
    flex: 1;
}

.contact-map-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-additional {
    padding: 80px 0;
    background: #f7fafc;
}

.additional-info-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.additional-info-center h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c5282;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5282;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

.thanks-section {
    padding: 100px 0;
    background: #f7fafc;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c5282;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-message {
    margin-bottom: 48px;
}

.thanks-message p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 12px;
}

.next-steps {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c5282;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 80px 0;
    background: #f7fafc;
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c5282;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c5282;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c5282;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin: 16px 0 16px 24px;
}

.legal-section li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: #667eea;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f7fafc;
    font-weight: 700;
    color: #2c5282;
}

.cookie-table td {
    color: #4a5568;
    font-size: 15px;
}

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

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

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

    .service-info {
        padding: 32px;
    }

    .cta-section-split .container-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-secondary,
    .cta-outline {
        width: 100%;
        text-align: center;
    }

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .service-detail-split,
    .service-detail-item.reverse-layout .service-detail-split {
        flex-direction: column;
        gap: 32px;
    }

    .contact-container-split {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary,
    .cta-outline {
        width: 100%;
        text-align: center;
    }

    .legal-container {
        padding: 40px 24px;
    }

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

    .value-card {
        flex: none;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}