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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

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

.story-section, .insight-section, .benefits-section {
    padding: 100px 0;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 60px 80px;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.split-image {
    flex: 1;
    background-color: #ecf0f1;
    min-height: 500px;
    overflow: hidden;
}

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

.insight-section {
    background-color: #f8f9fa;
}

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.centered-content {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.centered-content > p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
    color: #4a4a4a;
}

.composition-grid {
    display: flex;
    gap: 40px;
    margin: 50px 0;
}

.composition-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.composition-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.composition-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.reference-note {
    text-align: center;
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 40px;
}

.testimonials-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.disclaimer-inline {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.services-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 25px 30px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 30px 20px;
    color: #4a4a4a;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 30px;
}

.select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.selected-service-info {
    margin-top: 40px;
    padding: 25px;
    background-color: #e8f4f8;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.selected-service-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.selected-service-info strong {
    font-weight: 700;
}

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 10px;
}

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

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 20px 55px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.references {
    list-style: none;
    counter-reset: reference-counter;
}

.references li {
    counter-increment: reference-counter;
    margin-bottom: 12px;
    font-size: 14px;
}

.references li::before {
    content: "[" counter(reference-counter) "] ";
    font-weight: 700;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2c2c2c;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #6c7a7b;
}

.page-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 40px;
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.page-content li {
    margin-bottom: 12px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

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

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

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-top: 15px;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-container .cta-button {
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-text {
        padding: 50px 40px;
    }

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

    .composition-grid,
    .testimonials-split {
        flex-direction: column;
    }

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

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

    .form-split {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

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

    .nav-menu {
        gap: 20px;
    }

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

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

    .split-text h2,
    .centered-content h2,
    .services-section h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 36px;
    }

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

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