* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-immersive {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ecf0f1;
}

.hero-image-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75) 0%, rgba(52, 152, 219, 0.65) 100%);
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
}

.hero-content-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.hook-section {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

.hook-text {
    font-size: 26px;
    line-height: 1.5;
    color: #2c3e50;
    text-align: center;
    font-weight: 500;
}

.story-block {
    padding: 100px 24px;
    background-color: #ffffff;
}

.story-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

.insight-reveal {
    padding: 100px 24px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
    text-align: center;
}

.insight-reveal p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.benefits-visual {
    padding: 100px 24px;
    background-color: #ffffff;
}

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

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-icon {
    background-color: #ecf0f1;
    height: 240px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px 24px;
    color: #2c3e50;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    padding: 0 24px 24px 24px;
}

.trust-elements {
    padding: 100px 24px;
    background-color: #f8f9fa;
}

.trust-elements h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonials-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-reveal {
    padding: 100px 24px;
    background-color: #ffffff;
}

.services-reveal h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.services-intro {
    font-size: 19px;
    line-height: 1.6;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 60px;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

.service-image-wrapper {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

.btn-select {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.form-section {
    padding: 100px 24px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 48px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d1d8e0;
    border-radius: 6px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    text-align: center;
    font-style: italic;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 24px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    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: 32px;
}

.cookie-content p {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-cookie.accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero-simple {
    padding: 80px 24px 60px 24px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    color: #5a6c7d;
    font-weight: 400;
}

.about-story {
    padding: 80px 24px;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 34px;
    margin: 48px 0 24px 0;
    color: #2c3e50;
    font-weight: 700;
}

.about-story p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-page {
    padding: 60px 24px;
    background-color: #ffffff;
}

.service-card-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 48px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-image {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 400px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-card-price {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.services-info {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

.services-info h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.services-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.contact-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.contact-info-blocks {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-additional h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.contact-additional a {
    color: #3498db;
    text-decoration: none;
}

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

.thanks-section {
    padding: 120px 24px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 24px 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

.legal-page {
    padding: 60px 24px;
    background-color: #ffffff;
}

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

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px 0;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 20px 0 20px 32px;
    list-style-type: disc;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px;
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 16px;
    }

    .hero-content-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

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

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .contact-info-blocks {
        flex-direction: column;
    }

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

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