:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0891b2;
    --accent-color: #f59e0b;
    --success-color: #28a745;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
        padding: 60px 20px;
        gap: 40px;
    }

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

    .hero-text {
        font-size: 18px;
    }
}

.cta-primary,
.cta-secondary,
.btn-submit,
.btn-select,
.btn-service {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.cta-primary,
.btn-submit {
    background: var(--primary-color);
    color: white;
}

.cta-primary:hover,
.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary,
.btn-select,
.btn-service {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.intro-section,
.trust-section,
.guarantee-section,
.mission-section,
.values-section,
.numbers-section,
.faq-section,
.cta-section,
.info-section,
.resources-section,
.contact-emergency {
    padding: 80px 20px;
}

.intro-section {
    background: var(--bg-light);
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-split,
.process-split,
.about-intro-split,
.team-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.split-content {
    flex: 1;
}

.split-content h2,
.split-content h3 {
    margin-bottom: 20px;
    font-size: 32px;
}

.split-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

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

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

@media (max-width: 968px) {
    .benefits-split,
    .process-split,
    .about-intro-split,
    .team-split {
        flex-direction: column;
        gap: 40px;
    }

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

.services-showcase {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    margin-bottom: 16px;
}

.service-header h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-desc {
    color: var(--text-medium);
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
}

.btn-select {
    width: 100%;
    margin-top: auto;
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial-section blockquote {
    text-align: center;
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-section cite {
    display: block;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.process-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-medium);
}

.stats-section {
    padding: 80px 20px;
    background: var(--text-dark);
    color: white;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 18px;
    opacity: 0.9;
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    font-size: 18px;
    padding: 16px;
}

.trust-section {
    background: var(--bg-white);
    text-align: center;
}

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.trust-section p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
}

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d97706;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

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

    .hero-subtitle {
        font-size: 18px;
    }
}

.values-grid,
.numbers-grid,
.faq-grid,
.resources-grid,
.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card,
.number-item,
.faq-item,
.resource-card,
.guarantee-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.value-card,
.faq-item,
.resource-card,
.guarantee-item {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3,
.faq-item h3,
.resource-card h3,
.guarantee-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p,
.faq-item p,
.resource-card p,
.guarantee-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.values-section h2,
.numbers-section h2,
.faq-section h2,
.resources-section h2,
.guarantee-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.number-item {
    text-align: center;
}

.number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.label {
    display: block;
    font-size: 18px;
    color: var(--text-medium);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .cta-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .cta-primary:hover {
    background: var(--bg-light);
}

.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.service-detail-card.featured {
    border: 3px solid var(--accent-color);
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.detail-list {
    list-style: none;
    margin: 16px 0 24px 0;
}

.detail-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (max-width: 968px) {
    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
    }

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

.guarantee-section {
    background: var(--bg-light);
}

.guarantee-grid {
    gap: 40px;
}

.guarantee-item {
    flex: 1 1 calc(33.333% - 27px);
    text-align: center;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-block p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

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

    .map-placeholder img {
        height: 300px;
    }
}

.faq-section {
    background: var(--bg-white);
}

.resource-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.resource-link:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 20px;
    background: var(--bg-white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-medium);
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.legal-content strong {
    color: var(--text-dark);
}

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

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

.thanks-hero {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-text {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-confirmation {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.service-confirmation strong {
    color: var(--text-dark);
}

.next-steps {
    padding: 80px 20px;
    background: var(--bg-white);
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

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

.step-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.info-section {
    background: var(--bg-light);
}

.info-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-box ul {
    margin: 16px 0 16px 24px;
}

.info-box li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.resources-section {
    background: var(--bg-white);
}

.email-highlight {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}

.email-highlight a {
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .services-grid,
    .steps-grid,
    .values-grid,
    .faq-grid,
    .resources-grid,
    .guarantee-grid {
        gap: 20px;
    }

    .service-card,
    .step-card,
    .value-card,
    .faq-item,
    .resource-card,
    .guarantee-item {
        min-width: 100%;
    }
}

@media print {
    .main-nav,
    .cookie-banner,
    .sticky-cta,
    .cta-section,
    .form-section {
        display: none;
    }
}