* {
    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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.container-split > * {
    flex: 1 1 450px;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #1e3a8a;
}

.ad-notice {
    font-size: 12px;
    color: #64748b;
    padding: 6px 12px;
    background-color: #f1f5f9;
    border-radius: 4px;
}

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

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.hero-image {
    flex: 1 1 500px;
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s;
    text-align: center;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    border: 2px solid #1e3a8a;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
}

.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #0f172a;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
}

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

.service-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

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

.service-image {
    flex: 1 1 500px;
    background-color: #cbd5e1;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-top: 24px;
}

.trust-section {
    padding: 100px 20px;
    background-color: #0f172a;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1 1 280px;
    text-align: center;
    max-width: 350px;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 16px;
}

.trust-item p {
    font-size: 17px;
    color: #cbd5e1;
}

.additional-services {
    padding: 100px 20px;
    background-color: #ffffff;
}

.additional-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #0f172a;
    font-weight: 700;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #cbd5e1;
}

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #0f172a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #475569;
    margin: 0 24px 16px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 24px 24px;
}

.contact-form-section {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.form-intro {
    flex: 1 1 450px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 700;
}

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

.form-container {
    flex: 1 1 450px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer {
    padding: 60px 20px;
    background-color: #fffbeb;
    border-top: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
}

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

.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 80px 20px 30px;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.page-header {
    padding: 80px 20px 60px;
    background-color: #f8fafc;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    color: #475569;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

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

.service-detail-image {
    flex: 1 1 500px;
    background-color: #cbd5e1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1 1 500px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f172a;
    font-weight: 700;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1e293b;
    font-weight: 700;
}

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

.service-detail-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.price-info {
    margin-top: 32px;
    padding: 20px;
    background-color: #dbeafe;
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 15px;
    color: #1e40af;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    color: #1e3a8a;
    font-weight: 800;
}

.cta-section {
    padding: 100px 20px;
    background-color: #1e3a8a;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    color: #bfdbfe;
    margin-bottom: 36px;
}

.cta-section .btn-cta {
    background-color: #ffffff;
    color: #1e3a8a;
}

.cta-section .btn-cta:hover {
    background-color: #f1f5f9;
}

.about-hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-hero-text {
    flex: 1 1 450px;
}

.about-hero-text h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #0f172a;
    font-weight: 800;
}

.about-hero-text p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.about-hero-image {
    flex: 1 1 450px;
    background-color: #cbd5e1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-content {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #0f172a;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #0f172a;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 260px;
    padding: 36px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #0f172a;
    font-weight: 700;
}

.team-section p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.experience-numbers {
    padding: 100px 20px;
    background-color: #1e3a8a;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.number-block {
    text-align: center;
    flex: 1 1 250px;
    max-width: 300px;
}

.number-block .number {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.number-block p {
    font-size: 18px;
    color: #bfdbfe;
}

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

.philosophy-image {
    flex: 1 1 450px;
    background-color: #cbd5e1;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.philosophy-text {
    flex: 1 1 450px;
    padding: 60px;
}

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

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

.contact-page {
    padding: 80px 20px 40px;
    background-color: #f8fafc;
    text-align: center;
}

.contact-page h1 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-page p {
    font-size: 19px;
    color: #475569;
}

.contact-info-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-details {
    flex: 1 1 450px;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f172a;
    font-weight: 700;
}

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

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

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

.contact-map-placeholder {
    flex: 1 1 450px;
    background-color: #cbd5e1;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-approach {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.contact-approach h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #0f172a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    flex: 1 1 260px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1e3a8a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.approach-step p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.faq-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #0f172a;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 700;
}

.faq-item p {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8fafc;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    color: #0f172a;
    margin-bottom: 24px;
    font-weight: 800;
}

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

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    color: #0f172a;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 19px;
    color: #334155;
    margin-top: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.legal-page ul {
    margin-left: 28px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 17px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.cookie-table th {
    background-color: #f1f5f9;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.cookie-table td {
    padding: 12px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

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

    .service-content {
        padding: 40px 30px;
    }

    .service-detail-content {
        padding: 40px 30px;
    }

    .philosophy-text {
        padding: 40px 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

    .thanks-content h1 {
        font-size: 34px;
    }
}
