* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --light-bg: #f7fafc;
    --dark-text: #1a202c;
    --gray-text: #4a5568;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --success: #38a169;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.nav-split {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.split-info {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 3rem;
}

.split-content {
    flex: 1;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-alternating {
    max-width: 1400px;
    margin: 5rem auto;
}

.feature-block {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 2rem 3rem;
}

.feature-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-text);
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.form-container {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.form-intro {
    background-color: var(--light-bg);
    padding: 3rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--gray-text);
}

.service-form {
    padding: 3rem;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.trust-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 2rem;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.trust-item p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.cta-sticky-wrapper {
    position: sticky;
    bottom: 0;
    z-index: 999;
}

.cta-sticky {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.cta-sticky span {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sticky {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
    color: var(--secondary-color);
}

.site-footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 2rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--success);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background-color: #2f855a;
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-hero {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

.team-values {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-text);
    line-height: 1.7;
}

.experience-section {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

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

.experience-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.15rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.stats-section {
    padding: 5rem 2rem;
    background-color: var(--primary-color);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1400px;
    margin: 3rem auto;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.additional-info {
    background-color: var(--light-bg);
    padding: 5rem 2rem;
}

.additional-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.info-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-block p {
    color: var(--gray-text);
    line-height: 1.7;
}

.contact-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-text);
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    margin: 4rem 0;
}

.faq-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.7;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    color: var(--white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-info {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.selected-service {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0.5rem 0;
}

.selected-price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-next h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-steps {
    padding-left: 1.5rem;
}

.thanks-steps li {
    margin-bottom: 1rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.thanks-emergency {
    background-color: #fff5f5;
    border-left: 4px solid #fc8181;
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.thanks-emergency p {
    margin: 0;
    color: var(--dark-text);
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-intro {
    color: var(--gray-text);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table td {
    color: var(--gray-text);
}

@media (max-width: 968px) {
    .hero-split,
    .split-info,
    .feature-block,
    .service-detail,
    .contact-grid {
        flex-direction: column;
    }

    .feature-block.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-item,
    .value-card,
    .info-block,
    .faq-item {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

    .stat-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-sticky {
        flex-direction: column;
        gap: 1rem;
    }
}
