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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #fef3c7;
    color: #78350f;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid #fcd34d;
}

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-burger span {
    width: 25px;
    height: 3px;
    background-color: #1f2937;
    transition: all 0.3s ease;
}

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

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

.hero-card {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1 1 500px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111827;
}

.hero-lead {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
}

.hero-visual {
    flex: 1 1 500px;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-strip {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.intro-strip p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    text-align: center;
}

.services-cards {
    padding: 80px 20px;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid #f59e0b;
}

.badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

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

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.card-desc {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #374151;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.card-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.btn-select:hover {
    background-color: #1d4ed8;
    transform: scale(1.02);
}

.form-section {
    padding: 80px 20px;
}

.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.form-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 35px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #10b981;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #059669;
    transform: scale(1.02);
}

.trust-indicators {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.indicators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.indicator-item {
    text-align: center;
    flex: 1 1 200px;
}

.indicator-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 10px;
}

.indicator-label {
    font-size: 1rem;
    color: #6b7280;
}

.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: #d1d5db;
    border: 1px solid #d1d5db;
}

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

.page-header {
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.header-lead {
    font-size: 1.25rem;
    color: #6b7280;
}

.about-story {
    padding: 80px 20px;
}

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

.story-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1 1 400px;
}

.story-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.story-text p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
}

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

.value-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.team-intro {
    padding: 80px 20px;
}

.team-description {
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
}

.team-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.process-section {
    padding: 80px 20px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.process-step p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-about {
    padding: 80px 20px;
    background-color: #2563eb;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

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

.service-detail-card {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    padding: 50px 30px;
}

.service-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.service-tagline {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
}

.service-detail-content p {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #111827;
}

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

.detailed-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #374151;
}

.detailed-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing-box {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
}

.service-detail-image {
    flex: 1 1 350px;
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-popular {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.comparison-note {
    padding: 80px 20px;
    text-align: center;
}

.comparison-note h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.comparison-note p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.contact-main {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-section {
    flex: 1 1 400px;
}

.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111827;
}

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

.contact-block h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #374151;
}

.contact-detail {
    font-size: 1.0625rem;
    color: #1f2937;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
}

.contact-visual {
    flex: 1 1 400px;
}

.contact-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-cta-box {
    padding: 35px;
    border-radius: 12px;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.contact-cta-box p {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.faq-item p {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-main {
    padding: 100px 20px;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
}

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

.order-summary {
    background-color: #f0fdf4;
    padding: 25px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
}

.order-summary p {
    margin-bottom: 10px;
    font-size: 1.0625rem;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111827;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    text-align: left;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.step-text p {
    color: #6b7280;
    line-height: 1.6;
}

.thanks-contact-info {
    margin-bottom: 40px;
    font-size: 1.0625rem;
    color: #4b5563;
}

.contact-email-display {
    font-weight: 600;
    color: #2563eb;
    margin-top: 10px;
}

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

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.legal-intro {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-date {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #111827;
}

.legal-page h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-page p {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e5e7eb;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-burger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .form-card {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .story-layout {
        gap: 40px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-layout {
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}