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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.container-fluid {
    max-width: 100%;
    padding: 0;
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--secondary-color);
}

.ad-label {
    background: #fff3cd;
    color: #856404;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    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: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-split {
    background: var(--light-bg);
    padding: 0;
}

.split-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-left,
.split-right,
.split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px 40px;
    background: var(--white);
}

.split-right {
    overflow: hidden;
}

.hero-text {
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.intro-section,
.methodology-section,
.trust-section,
.insights-section,
.about-intro,
.team-section,
.methodology-detail,
.contact-info-section {
    padding: 80px 0;
}

.intro-section {
    background: var(--white);
}

.methodology-section {
    background: var(--light-bg);
}

.trust-section {
    background: var(--white);
}

.insights-section {
    background: var(--light-bg);
}

.split-content {
    padding: 40px;
}

.text-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.services-highlight {
    padding: 80px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-icon {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

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

.service-card p {
    color: #666;
    margin-bottom: 20px;
    min-height: 80px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial {
    background: var(--light-bg);
    padding: 25px;
    border-left: 4px solid var(--secondary-color);
    margin: 20px 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.cta-box .cta-primary {
    background: var(--white);
    color: var(--secondary-color);
}

.cta-box .cta-primary:hover {
    background: var(--light-bg);
}

.form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.form-intro p {
    color: #666;
    margin-bottom: 25px;
}

.form-benefits ul {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.form-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.selected-service-display {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #666;
    line-height: 1.8;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    padding: 15px 25px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: #bbb;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #bbb;
}

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
}

.values-section,
.comparison-section,
.faq-section,
.contact-cta-section,
.next-steps-section {
    padding: 80px 0;
}

.values-section {
    background: var(--light-bg);
}

.values-grid,
.comparison-grid,
.faq-grid,
.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card,
.comparison-card,
.faq-item,
.step-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3,
.comparison-card h3,
.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comparison-card ul,
.faq-item p {
    color: #666;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.comparison-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 20px;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-card .split-wrapper {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-card.reverse .split-wrapper {
    background: var(--light-bg);
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.contact-details {
    max-width: 500px;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

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

.text-center-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-center-block p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-text ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-text li {
    margin-bottom: 10px;
    color: #555;
}

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #999;
}

.thanks-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.thanks-details {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 6px;
}

.thanks-details p {
    margin-bottom: 10px;
    color: #555;
}

#selectedServiceInfo {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .split-wrapper,
    .split-wrapper.reverse {
        flex-direction: column;
    }

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

    .text-block h2 {
        font-size: 28px;
    }

    .section-header-center h2 {
        font-size: 30px;
    }

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

    .split-left {
        padding: 40px 20px;
    }

    .split-content {
        padding: 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

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

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

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

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

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

    .thanks-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }

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

    .contact-form {
        padding: 25px 20px;
    }
}