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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #10b981;
    --error-color: #ef4444;
}

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

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

.hidden {
    display: none !important;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo a {
    color: inherit;
    text-decoration: none;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.navigation a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept, .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-accept:hover, .btn-primary:hover {
    background: var(--primary-dark);
}

.btn-reject, .btn-secondary {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-reject:hover, .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.split-left, .split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 100%;
}

.hero-text, .intro-text, .form-intro, .trust-content {
    padding: 60px;
}

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

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

.hero-image, .intro-image, .trust-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

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

.intro-split {
    display: flex;
    background: var(--bg-light);
}

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

.intro-text h2, .trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 20px;
    color: var(--text-medium);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

.service-content {
    padding: 24px;
}

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

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

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

.btn-select, .btn-service {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover, .btn-service:hover {
    background: var(--primary-dark);
}

.form-split {
    display: flex;
    background: var(--bg-light);
}

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

.contact-form {
    padding: 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.selected-service-display {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.btn-submit:hover {
    background: #059669;
}

.trust-split {
    display: flex;
    padding: 80px 0;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col, .footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-col h4, .footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-col ul li, .footer-column ul li {
    margin-bottom: 10px;
}

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

.footer-col a:hover, .footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
}

.page-hero {
    background: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-hero .lead {
    font-size: 22px;
    color: var(--text-medium);
}

.about-story, .values-section, .team-section, .equipment-section {
    padding: 80px 0;
}

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

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

.split-content {
    flex: 1;
}

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

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

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

.values-section h2, .team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card, .team-member {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

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

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

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

.member-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.role {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

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

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

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.service-detail-content ul {
    margin: 16px 0 16px 20px;
    color: var(--text-medium);
}

.service-detail-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.highlight {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

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

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

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

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.contact-note {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

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

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

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

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

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

.thanks-info {
    text-align: left;
    margin: 40px 0;
}

.thanks-info h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: var(--text-dark);
}

.next-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

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

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

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

.thanks-note {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-top: 30px;
}

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

.service-confirmation {
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 20px 0;
}

.legal-page {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.legal-page ul {
    margin: 16px 0 16px 30px;
    color: var(--text-medium);
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 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);
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.approach-section {
    padding: 80px 0;
}

.contact-form-section, .form-layout {
    padding: 80px 0;
}

.form-layout {
    display: flex;
    gap: 60px;
}

.form-intro, .form-container {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.form-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.benefit-icon {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.service-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

@media (max-width: 1024px) {
    .hero-split, .intro-split, .form-split, .trust-split, .split-layout, .service-detail-layout, .contact-layout, .form-layout {
        flex-direction: column;
    }

    .hero-text, .intro-text, .form-intro, .trust-content {
        padding: 40px;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

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

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

    .section-header-center h2, .values-section h2, .team-section h2, .faq-section h2, .testimonials-section h2 {
        font-size: 32px;
    }

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

    .navigation ul {
        gap: 15px;
    }

    .value-card, .team-member, .faq-item, .testimonial-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }
}