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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2c7cc1;
    --accent-color: #f39c12;
    --dark-bg: #1e2a38;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #d1d5db;
    --success-color: #2ecc71;
}

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

.ad-disclosure {
    background-color: var(--dark-bg);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
}

.ad-disclosure p {
    margin: 0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

.intro-alternating {
    padding: 90px 40px;
    background-color: #ffffff;
}

.alt-block {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.alt-text {
    flex: 1;
}

.alt-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.alt-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.alt-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.value-proposition {
    padding: 90px 40px;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.value-proposition h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 8px;
    min-width: 280px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
}

.services-showcase {
    padding: 90px 40px;
    background-color: var(--light-bg);
}

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

.services-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.service-selection-form {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header h3 {
    font-size: 28px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.services-list {
    margin-bottom: 50px;
}

.service-option {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: var(--secondary-color);
    background-color: #f8fafc;
    transform: translateX(5px);
}

.service-option input[type="radio"] {
    margin-right: 20px;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.field-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.field-group input {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.trust-text {
    flex: 1;
    order: 2;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.trust-visual {
    flex: 1;
    background-color: #e5e7eb;
    order: 1;
}

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

.methodology {
    padding: 90px 40px;
    background-color: var(--light-bg);
}

.methodology h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.method-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.step {
    flex: 1 1 calc(50% - 18px);
    padding: 35px;
    background-color: #ffffff;
    border-left: 5px solid var(--accent-color);
    min-width: 280px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b7c3;
}

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

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

.footer-column ul li a {
    color: #b0b7c3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 42, 56, 0.98);
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 40px 60px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #e5e7eb;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a5568;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    max-width: 300px;
}

.price-label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-section {
    padding: 80px 40px;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.about-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

.about-block {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.values-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    min-width: 280px;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.expertise-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.expertise-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.approach-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-radius: 10px;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: center;
}

.approach-section > p {
    font-size: 17px;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-step {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

.contact-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.contact-message {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-message h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.contact-message a {
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-container {
    padding: 100px 40px;
    background-color: var(--light-bg);
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.next-steps {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps ul {
    list-style-position: inside;
    font-size: 16px;
    color: #555;
    line-height: 2;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.legal-page h1 {
    max-width: 1000px;
    margin: 0 auto 15px;
    font-size: 38px;
    color: var(--primary-color);
}

.legal-date {
    max-width: 1000px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: #888;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
}

.legal-content a {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-split,
    .alt-block,
    .trust-content,
    .service-block,
    .about-block,
    .expertise-section,
    .contact-info-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .hero-content,
    .alt-text,
    .trust-text,
    .service-info,
    .about-text,
    .expertise-text,
    .contact-details {
        order: 1;
    }

    .hero-image,
    .alt-visual,
    .trust-visual,
    .service-visual,
    .about-visual,
    .expertise-visual,
    .contact-visual {
        order: 2;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .service-selection-form {
        padding: 30px 25px;
    }

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

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