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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

.split-left {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.intro-section {
    padding: 100px 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.content-half {
    flex: 1;
}

.image-half {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.content-half h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

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

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a252f;
}

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

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

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 25px 25px 15px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #1a252f;
}

.service-card p {
    padding: 0 25px 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.price {
    padding: 0 25px 20px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #2980b9;
}

.select-service {
    margin: 0 25px 25px 25px;
    width: calc(100% - 50px);
    padding: 14px;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #21618c;
    transform: translateY(-2px);
}

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

.trust-points {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-intro p {
    font-size: 18px;
    color: #4a5568;
}

.consultation-form {
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2980b9;
}

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef5e7;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #7d6608;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 30px;
}

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

.cookie-content a {
    color: #3498db;
}

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

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

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    padding: 80px 40px 60px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #5a6c7d;
}

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

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

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

.service-detail-card.reverse .service-layout {
    flex-direction: row-reverse;
}

.service-image-col {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-text-col {
    flex: 1;
}

.service-text-col h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

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

.service-text-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252f;
}

.service-text-col ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.service-text-col ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.select-service-page {
    padding: 14px 32px;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-page:hover {
    background-color: #21618c;
    transform: translateY(-2px);
}

.cta-bottom {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #21618c;
    transform: translateY(-2px);
}

.about-intro {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.methodology h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.method-number {
    font-size: 48px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252f;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

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

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

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a252f;
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a252f;
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.team-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
    max-width: 220px;
}

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

.certifications h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.cert-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.cert-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2980b9;
}

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

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

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 8px;
}

.cta-inline {
    display: inline-block;
    margin-top: 15px;
    color: #2980b9;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-inline:hover {
    color: #21618c;
}

.access-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.access-section h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a252f;
}

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

.access-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.access-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a252f;
}

.access-item p {
    font-size: 16px;
    color: #4a5568;
}

.legal-entity {
    padding: 80px 40px;
}

.legal-entity h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.legal-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #2c3e50;
}

.thanks-section {
    padding: 120px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a252f;
}

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

.thanks-details {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a252f;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
    counter-increment: step-counter;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.next-steps li strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

.next-steps li p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252f;
}

.thanks-info-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-info-box a {
    color: #2980b9;
    font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
    background-color: #21618c;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 40px 100px 40px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252f;
}

.legal-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #21618c;
}

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

    .split-layout,
    .service-layout {
        flex-direction: column;
    }

    .split-layout.reverse,
    .service-detail-card.reverse .service-layout {
        flex-direction: column;
    }

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

    .services-grid,
    .testimonial-grid,
    .method-grid,
    .team-stats,
    .cert-grid,
    .access-grid,
    .footer-grid {
        flex-direction: column;
    }

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

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

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