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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a90b5;
    --accent-color: #e67e22;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --medium-bg: #e9ecef;
    --text-dark: #212529;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.main-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background-color: var(--light-bg);
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--medium-bg);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 80px 0;
}

.hero-text {
    max-width: 650px;
    color: var(--white);
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.intro-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-preview {
    padding: 120px 0;
    background-color: var(--white);
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-cards {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    padding: 0 25px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-card .btn-secondary {
    margin: 0 25px 25px;
    display: inline-block;
}

.why-us-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.why-us-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.testimonial-section {
    padding: 110px 0;
    background-color: var(--medium-bg);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.cta-header {
    text-align: center;
    margin-bottom: 50px;
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 25px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

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

.info-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 300px;
}

.info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.story-layout {
    display: flex;
    align-items: center;
    gap: 70px;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.values-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.values-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-simple {
    padding: 90px 0;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--white);
}

.cta-simple h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-simple p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.service-detail-content h2,
.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.service-detail-content ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.price-tag {
    font-size: 1.6rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 20px;
}

.pricing-note {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-note h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-note p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.pricing-note ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.pricing-note ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.contact-additional h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-additional p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-additional ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.contact-additional ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.thanks-content {
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.thanks-service {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 5px;
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.next-steps h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

.step-box {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
}

.step-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.step-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page strong {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .intro-grid,
    .story-layout,
    .contact-layout,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}