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

:root {
    --primary-color: #2d5a8c;
    --secondary-color: #4a90d9;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

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

a:hover {
    color: var(--secondary-color);
}

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

.ad-disclosure {
    background-color: #fffbea;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #856404;
    border-bottom: 1px solid #ffeeba;
}

.header-main {
    background-color: var(--background-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2a2a2a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 140, 0.85) 0%, rgba(74, 144, 217, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--background-white);
    margin-bottom: 20px;
    max-width: 900px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--background-white);
    max-width: 700px;
    font-weight: 300;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-hook {
    background-color: var(--background-light);
}

.story-hook h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-hook p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.insight-section {
    background: linear-gradient(to bottom, #f0f4f8 0%, #ffffff 100%);
}

.insight-section h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.insight-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
}

.insight-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    background-color: var(--background-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 1rem;
    color: var(--text-light);
    text-align: left;
}

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

.trust-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.trust-section img {
    margin-top: 40px;
    border-radius: 8px;
    background-color: #e9ecef;
}

.testimonials-section {
    background-color: #f5f7fa;
}

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

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

.testimonial-item {
    flex: 1;
    background-color: var(--background-white);
    padding: 35px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.benefits-section h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.benefits-layout {
    display: flex;
    gap: 30px;
}

.benefit-card {
    flex: 1;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e9ecef;
}

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

.benefit-card p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--background-white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--background-white);
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-white);
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    color: var(--background-white);
}

.services-pricing {
    background-color: var(--background-light);
}

.services-pricing h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

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

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--background-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.02);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 20px;
}

.order-form-section {
    background-color: var(--background-white);
}

.order-form-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fffacd;
    border-top: 2px solid #f0e68c;
}

.disclaimer {
    font-size: 0.9rem;
    color: #6b5d00;
    font-style: italic;
    line-height: 1.7;
}

.references-section {
    background-color: var(--background-light);
}

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

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.references-list a {
    color: var(--secondary-color);
}

.footer-main {
    background-color: #1a1a1a;
    color: #cccccc;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 30px;
    display: flex;
    gap: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--background-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--background-white);
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.thanks-section {
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.thanks-section h1 {
    font-size: 2.8rem;
    color: var(--success-color);
    margin-bottom: 25px;
}

.thanks-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

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

.about-hero {
    background-color: var(--background-light);
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.intro-large {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-content {
    background-color: var(--background-white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    background-color: #f0f4f8;
}

.values-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.approach-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.approach-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.approach-section img {
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e9ecef;
}

.mission-section {
    background-color: var(--background-light);
}

.mission-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.mission-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-hero {
    background-color: var(--background-light);
}

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

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-list {
    background-color: var(--background-white);
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-info ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-info ul li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--background-white);
}

.services-cta {
    background-color: var(--background-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-hero {
    background-color: var(--background-light);
}

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

.contact-content {
    background-color: var(--background-white);
}

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

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 35px;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-image-block {
    flex: 1;
    background-color: #e9ecef;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-additional {
    background-color: var(--background-light);
}

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

.contact-additional p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.legal-content {
    background-color: var(--background-white);
}

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

.legal-content h1 {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.cookie-table thead {
    background-color: var(--background-light);
}

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .content-narrow,
    .content-wide {
        padding: 50px 20px;
    }

    .split-content,
    .content-split,
    .benefits-layout,
    .testimonials-grid,
    .values-grid,
    .service-detail {
        flex-direction: column;
    }

    .insight-cards {
        flex-direction: column;
    }

    .pricing-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
