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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

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

.hero-text-card {
    flex: 1;
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.hero-text-card p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #475569;
}

.hero-image-card {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1d4ed8;
}

.value-proposition {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

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

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0f172a;
}

.value-card p {
    color: #475569;
    line-height: 1.7;
}

.services-overview {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.services-overview h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #0f172a;
}

.service-content p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 16px;
}

.form-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.form-intro-card {
    background-color: #eff6ff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.form-intro-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.form-intro-card p {
    font-size: 18px;
    color: #475569;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    background-color: #ffffff;
}

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

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

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

.trust-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
}

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

.trust-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.testimonial-author {
    display: block;
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
}

.site-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 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-section a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px 30px;
    box-shadow: 0 -2px 10px 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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #0f172a;
}

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

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

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-card-large {
    flex: 1 1 100%;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.about-card-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 32px;
    background-color: #e2e8f0;
}

.about-card-large h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

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

.about-card {
    flex: 1;
    min-width: 280px;
    background-color: #eff6ff;
    padding: 32px;
    border-radius: 12px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #0f172a;
}

.about-card p {
    color: #475569;
    line-height: 1.7;
}

.values-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2563eb;
}

.value-item p {
    color: #475569;
    line-height: 1.7;
}

.team-section {
    padding: 80px 30px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #0f172a;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: #eff6ff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #475569;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

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

.service-detail-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.service-detail-content li {
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.6;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 24px;
}

.cta-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #eff6ff;
    padding: 60px 50px;
    border-radius: 12px;
}

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f172a;
}

.cta-card-centered p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button-large:hover {
    background-color: #1d4ed8;
}

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

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f172a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2563eb;
}

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

.thanks-section {
    padding: 120px 30px;
    text-align: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f0fdf4;
    padding: 60px 50px;
    border-radius: 12px;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0f172a;
}

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

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

.cta-button-secondary {
    display: inline-block;
    background-color: #475569;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button-secondary:hover {
    background-color: #334155;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #0f172a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #334155;
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .cards-grid-three,
    .cards-grid-two,
    .footer-content {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}