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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-primary a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-primary a:hover {
    color: #007bff;
}

.ad-disclosure {
    font-size: 12px;
    color: #6c757d;
    padding: 4px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-card {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content-card {
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.hero-content-card h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-story {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.5;
}

.intro-story p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
}

.problem-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.problem-card {
    flex: 1 1 300px;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #856404;
}

.problem-card p {
    color: #856404;
    line-height: 1.7;
}

.insight-block {
    padding: 80px 0;
    background-color: #e3f2fd;
}

.insight-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1565c0;
}

.insight-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1976d2;
    line-height: 1.8;
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.trust-card {
    flex: 1 1 280px;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    color: #6c757d;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-style: italic;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.products-reveal {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.product-card {
    flex: 1 1 350px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-info p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #495057;
    font-size: 15px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 15px 30px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #0056b3;
}

.form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    padding: 15px 30px;
    background-color: #28a745;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.benefits-final {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefits-final h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-item {
    padding: 25px;
    background-color: #e8f5e9;
    border-left: 4px solid #28a745;
    border-radius: 6px;
    font-size: 18px;
    line-height: 1.7;
}

.benefit-item strong {
    color: #2e7d32;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.footer-main {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #adb5bd;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #adb5bd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

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

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

.about-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-card-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text-card {
    flex: 1 1 400px;
}

.about-text-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.about-image-card {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.value-card {
    flex: 1 1 250px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.mission-card-section {
    padding: 80px 0;
    background-color: #e8eaf6;
}

.mission-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.mission-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #3f51b5;
}

.mission-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.services-catalog {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-card {
    flex: 1 1 300px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-card p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-extended {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info-extended h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-block p {
    color: #6c757d;
    line-height: 1.7;
}

.map-placeholder {
    padding: 80px 0;
    background-color: #ffffff;
}

.map-card {
    border-radius: 12px;
    overflow: hidden;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 30px;
}

.selected-service-info {
    font-size: 16px;
    color: #495057;
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 6px;
}

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

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #495057;
    line-height: 1.7;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #495057;
}

.legal-page p {
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.legal-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    color: #495057;
}

@media (max-width: 768px) {
    .hero-content-card h1 {
        font-size: 32px;
    }

    .hero-content-card p {
        font-size: 16px;
    }

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

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

    .nav-primary {
        flex-direction: column;
        gap: 15px;
    }

    .problem-card-grid,
    .trust-grid,
    .testimonial-cards,
    .product-card-grid,
    .footer-grid,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

    .about-card-layout {
        flex-direction: column;
    }

    .form-card {
        padding: 30px;
    }

    .thanks-card {
        padding: 40px 20px;
    }

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