* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e3a8a;
}

.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 80px 30px 100px;
    position: relative;
}

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #1e3a8a;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.problem-section {
    background-color: #f8fafc;
    padding: 90px 30px;
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e293b;
    font-weight: 700;
}

.problem-section p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #475569;
}

.insight-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1e293b;
    font-weight: 700;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #475569;
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e2e8f0;
}

.services-preview {
    background: linear-gradient(to bottom, #f1f5f9 0%, #ffffff 100%);
    padding: 90px 30px;
}

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

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1e293b;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 25px 20px;
}

.service-details {
    margin: 0 25px 25px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.service-time {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

.trust-section {
    background-color: #1e293b;
    color: #ffffff;
    padding: 80px 30px;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.93;
}

.testimonials-section {
    padding: 90px 30px;
    background-color: #f8fafc;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3b82f6;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.pricing-reveal {
    padding: 100px 30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.pricing-reveal h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 35px 30px;
    width: calc(33.333% - 17px);
    min-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 15px;
}

.pricing-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.cta-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #1e293b;
    font-weight: 700;
}

.cta-section > .content-narrow > p {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
}

.contact-form {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1e293b;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 30px 30px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
    max-width: 900px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #64748b;
    color: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

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

.page-header p {
    font-size: 19px;
    opacity: 0.92;
}

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

.about-image-section {
    margin-bottom: 70px;
}

.about-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.team-section {
    background-color: #f8fafc;
    padding: 80px 30px;
    margin: 70px 0;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    width: calc(50% - 15px);
    max-width: 450px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.values-section {
    background-color: #f1f5f9;
    padding: 80px 30px;
    margin: 70px 0;
}

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

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

.value-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.cta-secondary {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 70px 30px;
    text-align: center;
}

.cta-secondary h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

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

.service-block-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.service-block-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 700;
}

.service-block-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 18px;
}

.service-price {
    margin: 30px 0 15px;
    padding: 20px;
    background-color: #f1f5f9;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.price-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    margin-left: 15px;
}

.service-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.contact-info-section {
    padding: 70px 30px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1e293b;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e293b;
    font-weight: 600;
}

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

.contact-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e2e8f0;
}

.contact-form-section {
    background-color: #f8fafc;
    padding: 70px 30px;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1e293b;
    font-weight: 700;
}

.contact-form-section > .content-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
}

.faq-section {
    padding: 70px 30px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: 800;
}

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

.service-confirmation {
    background-color: #dbeafe;
    color: #1e3a8a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    font-weight: 500;
    display: none;
}

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

.next-steps {
    background-color: #f8fafc;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 600;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    background-color: #ffffff;
    border: 2px solid #1e3a8a;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

.legal-page {
    padding: 70px 30px;
    background-color: #ffffff;
}

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

.update-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1e293b;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 15px;
}

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

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

.legal-page a {
    color: #3b82f6;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e3a8a;
}

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

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .pricing-card {
        width: 100%;
    }

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .team-member,
    .value-item {
        width: 100%;
    }

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

    .btn-secondary {
        width: 100%;
    }
}