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

:root {
    --primary-color: #5a9fb8;
    --secondary-color: #7ab8d4;
    --accent-color: #b8d4e0;
    --light-bg: #e8f4f8;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6a6a6a;
    --border-color: #d0d0d0;
    --white: #ffffff;
    --success-color: #4a9d5f;
    --error-color: #c54545;
}

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

.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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #4a8fa0;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-text);
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.main-nav a {
    color: var(--medium-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

.hero-image {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #4a8fa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 159, 184, 0.3);
}

.cta-button-alt {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background: var(--primary-color);
    color: var(--white);
}

.intro-section {
    background: var(--white);
    padding: 80px 0;
}

.intro-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.intro-section p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 20px;
}

.stats-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-card h4 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.9;
}

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

.content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.content-left p {
    font-size: 18px;
    color: var(--medium-text);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--medium-text);
}

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

.services-overview {
    background: var(--white);
    padding: 80px 0;
}

.services-overview h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    font-size: 16px;
    color: var(--medium-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
}

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

.testimonials-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.testimonial-block {
    background: var(--white);
    padding: 35px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
    border-radius: 4px;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-text);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-style: normal;
    color: var(--light-text);
    font-size: 15px;
}

.how-it-works {
    background: var(--white);
    padding: 80px 0;
}

.how-it-works h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.step p {
    font-size: 15px;
    color: var(--medium-text);
    line-height: 1.6;
}

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

.form-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-text);
}

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

.service-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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);
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.final-cta {
    background: var(--secondary-color);
    padding: 70px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
}

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

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

.footer-col {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 200px;
}

.footer-col h4,
.footer-col h5 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.services-detailed {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-card {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-detail-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-detail-header h3 {
    font-size: 26px;
    margin: 0;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
}

.service-detail-content {
    padding: 30px;
    background: var(--white);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--medium-text);
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-text);
}

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

.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--medium-text);
    line-height: 1.6;
}

.service-cta {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #4a8fa0;
}

.why-choose-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.why-choose-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.reason-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.reason-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.reason-item p {
    font-size: 16px;
    color: var(--medium-text);
    line-height: 1.7;
}

.cta-section {
    background: var(--white);
    padding: 70px 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.cta-section p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 30px;
}

.about-story {
    background: var(--white);
    padding: 80px 0;
}

.about-story h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.about-story p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mission-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.mission-text p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-section {
    background: var(--white);
    padding: 80px 0;
}

.values-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.value-card p {
    font-size: 16px;
    color: var(--medium-text);
    line-height: 1.7;
}

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

.team-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.team-section p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.impact-section {
    background: var(--white);
    padding: 80px 0;
}

.impact-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.impact-stat {
    text-align: center;
}

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

.stat-label {
    font-size: 16px;
    color: var(--medium-text);
}

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

.commitment-section h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.commitment-section p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.contact-details p {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.contact-text p {
    font-size: 16px;
    color: var(--medium-text);
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.contact-faq {
    background: var(--light-bg);
    padding: 80px 0;
}

.contact-faq h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-text);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.faq-item p {
    font-size: 16px;
    color: var(--medium-text);
    line-height: 1.7;
}

.legal-page {
    background: var(--white);
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--dark-text);
}

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

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

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

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

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

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

.thanks-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.thanks-message {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 40px;
}

.next-steps {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--medium-text);
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-confirmation {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-confirmation p {
    font-size: 16px;
    color: var(--medium-text);
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .content-split {
        flex-direction: row;
    }

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

    .mission-content {
        flex-direction: row;
    }

    .mission-text,
    .mission-visual {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-details,
    .contact-map {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .page-hero h2 {
        font-size: 32px;
    }

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

    .step {
        flex: 1 1 100%;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reason-item,
    .value-card {
        flex: 1 1 100%;
    }

    .contact-item {
        flex-direction: column;
    }
}