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

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

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

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.hero-section {
    margin-bottom: 0;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.7));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: #ecf0f1;
    font-weight: 300;
}

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

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.section-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

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

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.section-problem h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.problem-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.problem-block {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.problem-block h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.section-insight {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.insight-box {
    padding: 50px;
    background-color: #ffffff;
    border-left: 5px solid #3498db;
    border-radius: 8px;
}

.insight-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c3e50;
}

.insight-box p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.insight-box a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.insight-box a:hover {
    text-decoration: underline;
}

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

.section-benefits h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

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

.benefit-card h4 {
    font-size: 22px;
    padding: 25px 25px 15px;
    font-weight: 600;
}

.benefit-card p {
    padding: 0 25px 25px;
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

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

.section-testimonials h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

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

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

.section-services h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.service-card.selected {
    border: 3px solid #27ae60;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

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

.service-card h3 {
    font-size: 20px;
    padding: 25px 25px 15px;
    font-weight: 600;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #34495e;
    line-height: 1.6;
}

.service-price {
    padding: 0 25px 20px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 20px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.service-card.selected .btn-select {
    background-color: #27ae60;
}

.service-card.selected .btn-select:hover {
    background-color: #229954;
}

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

.section-form h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.section-form > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #7f8c8d;
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

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

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

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

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

.about-main {
    flex: 2;
}

.about-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-main h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-main p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.about-sidebar {
    flex: 1;
}

.about-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-values {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.about-values h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-values ul {
    list-style: none;
}

.about-values ul li {
    padding: 10px 0;
    border-bottom: 1px solid #bdc3c7;
    font-size: 15px;
    color: #2c3e50;
}

.about-values ul li:last-child {
    border-bottom: none;
}

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

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

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    min-width: 300px;
}

.service-item-image img {
    width: 100%;
    border-radius: 8px;
}

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

.service-item-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-item-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #34495e;
}

.service-item-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-item-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #34495e;
}

.service-item-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.section-cta {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.cta-box {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.btn-primary-large {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #229954;
}

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

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

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 15px;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    margin: 0;
}

.contact-map-placeholder {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.section-contact-cta {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
}

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

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

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

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-confirmation p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.thanks-next-steps ol {
    padding-left: 20px;
}

.thanks-next-steps ol li {
    padding: 10px 0;
    font-size: 16px;
    color: #34495e;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

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

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #34495e;
}

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

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

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

    .nav-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

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

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

    .problem-blocks {
        flex-direction: column;
    }

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

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

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

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

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .contact-form {
        padding: 30px;
    }

    .thanks-box {
        padding: 40px 30px;
    }
}