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

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

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

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

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

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2c5f8d;
}

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

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.88), rgba(17, 49, 75, 0.85));
    height: 100%;
    display: flex;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #e9ecef;
    max-width: 680px;
}

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

.intro-text {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
}

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

.two-col-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.col-content {
    flex: 1;
}

.col-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.col-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
}

.col-image {
    flex: 1;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-preview {
    padding: 100px 0;
    background: #2c5f8d;
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

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

.service-card p {
    font-size: 15px;
    margin: 0 20px 16px;
    color: #6c757d;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f8d;
    margin: 0 20px 20px;
}

.cta-button {
    margin: 0 20px 20px;
    padding: 14px 28px;
    background: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1e4266;
}

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

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.testimonial {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #495057;
    margin-bottom: 16px;
}

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

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

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

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

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

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

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

.submit-button {
    padding: 16px 32px;
    background: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #1e4266;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #212529;
    color: #adb5bd;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    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;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #495057;
}

.cookie-content a {
    color: #2c5f8d;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2c5f8d;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e4266;
}

.cookie-reject {
    background: #e9ecef;
    color: #495057;
}

.cookie-reject:hover {
    background: #ced4da;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #2c5f8d, #1e4266);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 19px;
    color: #e9ecef;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
    background: #ffffff;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: #495057;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f8d;
}

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

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

.cta-section {
    padding: 80px 0;
    background: #2c5f8d;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #e9ecef;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 40px;
    background: #ffffff;
    color: #2c5f8d;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-intro {
    padding: 80px 0;
}

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

.about-text {
    flex: 1.5;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.about-image {
    flex: 1;
}

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

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c3e50;
}

.mission-text {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
    text-align: center;
}

.values-section {
    padding: 80px 0;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5f8d;
}

.value-item p {
    font-size: 16px;
    color: #495057;
}

.approach-section {
    padding: 80px 0;
    background: #f1f3f5;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step-item {
    flex: 1 1 calc(33.333% - 22px);
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 15px;
    color: #6c757d;
}

.experience-section {
    padding: 80px 0;
}

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

.experience-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.email-display {
    font-family: monospace;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
    margin-bottom: 12px;
}

.map-caption {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.contact-approach {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-approach p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.contact-cta {
    padding: 80px 0;
    background: #2c5f8d;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    color: #e9ecef;
    margin-bottom: 32px;
}

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

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

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

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

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

.legal-page ul {
    margin: 16px 0 16px 32px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #495057;
}

.legal-update {
    margin-top: 48px;
    font-style: italic;
    color: #6c757d;
}

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

.thanks-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c5f8d;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-detail {
    font-size: 17px;
    margin-bottom: 24px;
    color: #495057;
}

.thanks-service {
    margin: 24px 0;
}

.selected-service-info {
    font-size: 16px;
    padding: 16px;
    background: #e7f3ff;
    border-left: 4px solid #2c5f8d;
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #2c5f8d;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1e4266;
}

.btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.btn-secondary:hover {
    background: #ced4da;
}

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item-simple {
    padding: 28px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.step-item-simple h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5f8d;
}

.step-item-simple p {
    font-size: 16px;
    color: #495057;
}

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

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

    .two-col-layout,
    .about-layout,
    .contact-grid,
    .thanks-section .container {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        padding: 32px 20px;
    }

    .values-grid,
    .approach-steps {
        flex-direction: column;
    }

    .value-item,
    .step-item {
        flex: 1 1 100%;
    }
}