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

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

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

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

.ad-label {
    font-size: 11px;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-card {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-card .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content-card {
    flex: 1;
    color: #ffffff;
}

.hero-content-card h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-cards {
    padding: 80px 0;
    background-color: #f9fafb;
}

.services-cards h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 56px;
    color: #1f2937;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

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

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.card-body p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 16px;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
}

.btn-card {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.info-card-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.info-card-large {
    background-color: #f0f9ff;
    border-radius: 16px;
    padding: 48px;
}

.info-card-large h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1f2937;
}

.steps-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    background-color: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.step-card p {
    font-size: 14px;
    color: #6b7280;
}

.form-card-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 56px;
    color: #1f2937;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 16px;
    color: #1f2937;
}

.testimonial-author span {
    font-size: 14px;
    color: #6b7280;
}

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.small-text {
    font-size: 12px;
    line-height: 1.6;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #60a5fa;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

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

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

.about-card-main {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

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

.values-cards {
    margin-bottom: 64px;
}

.values-cards h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1f2937;
}

.cards-grid-small {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 240px;
    background-color: #f0f9ff;
    padding: 32px 24px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

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

.team-section {
    margin-bottom: 64px;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #1f2937;
}

.team-intro {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 48px;
}

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

.stat-card {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.methodology-card {
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 16px;
}

.methodology-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.methodology-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.8;
}

.method-list {
    list-style: none;
    padding-left: 0;
}

.method-list li {
    font-size: 15px;
    color: #4b5563;
    padding: 12px 0 12px 32px;
    position: relative;
}

.method-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.services-detail {
    padding: 80px 0;
}

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

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

.service-features li {
    font-size: 14px;
    color: #6b7280;
    padding: 6px 0 6px 24px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2563eb;
    font-weight: 700;
}

.pricing-info-card {
    background-color: #fffbeb;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-top: 48px;
}

.pricing-info-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.pricing-info-card p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 16px;
}

.pricing-benefits {
    list-style: none;
    margin-bottom: 16px;
}

.pricing-benefits li {
    font-size: 15px;
    color: #4b5563;
    padding: 8px 0 8px 28px;
    position: relative;
}

.pricing-benefits li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-size: 18px;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

.contact-info-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
}

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

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

.contact-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.map-box {
    width: 100%;
    height: 400px;
    background-color: #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box p {
    font-size: 18px;
    color: #6b7280;
    font-weight: 600;
}

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

.faq-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.faq-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9fafb;
    padding: 28px;
    border-radius: 12px;
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.faq-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f9fafb;
    padding: 64px 48px;
    border-radius: 16px;
}

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

.thanks-card h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

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

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.step-text p {
    font-size: 15px;
    color: #6b7280;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    padding: 12px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.support-info {
    font-size: 14px;
    color: #6b7280;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.update-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1f2937;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.cookie-table td {
    color: #4b5563;
    font-size: 14px;
}

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

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

    .nav-right {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
    }

    .cards-grid,
    .testimonials-grid,
    .steps-cards,
    .cards-grid-small,
    .team-stats {
        flex-direction: column;
    }

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

    .about-card-main {
        flex-direction: column;
    }

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

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

    .thanks-card {
        padding: 48px 24px;
    }

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

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