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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav {
    display: flex;
    gap: 24px;
}

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

.nav a:hover {
    color: #007bff;
}

.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero p {
    font-size: 20px;
    color: #f0f0f0;
    max-width: 550px;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

.card-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.card-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.card-intro p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
}

.problem-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.insight-section {
    padding: 80px 0;
    background-color: #fff;
}

.insight-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 16px;
    color: #fff;
}

.insight-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.insight-card p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.citation {
    color: #ffd700;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.citation:hover {
    opacity: 0.8;
}

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

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.card-testimonial {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    border-left: 4px solid #667eea;
}

.card-testimonial p {
    font-size: 17px;
    color: #444;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.author {
    display: block;
    font-size: 14px;
    color: #888;
    font-style: normal;
}

.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    border-top: 3px solid #764ba2;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 24px 12px;
    font-size: 20px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    padding: 16px 24px 0;
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
}

.btn-select {
    margin: 16px 24px 24px;
    padding: 12px 24px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select:hover {
    background-color: #5568d3;
}

.btn-select.selected {
    background-color: #28a745;
}

.form-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #5568d3;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

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

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

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

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

.references {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.references p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    line-height: 1.6;
}

.references a {
    color: #667eea;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 12px 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: 20px;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #28a745;
    color: #fff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #fff;
}

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

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

.content-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    flex: 1 1 400px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    object-fit: cover;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

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

.value-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.team-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin: 24px 0;
}

.service-detail-image {
    flex: 1 1 400px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    object-fit: cover;
}

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

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #5568d3;
}

.contact-section {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-map-card {
    flex: 1 1 400px;
}

.contact-map-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-map-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.map-placeholder {
    border-radius: 8px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #fff;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-confirm {
    margin: 32px 0;
}

.service-selected {
    background: #e7f3ff;
    padding: 16px;
    border-radius: 8px;
    font-size: 17px;
    color: #1a1a1a;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #6c757d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #333;
}

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

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

.legal-text ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #888;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .card-intro h2,
    .trust-section h2,
    .benefits-section h2,
    .services-preview h2,
    .page-hero h1 {
        font-size: 28px;
    }

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

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

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

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

    .form-card {
        padding: 32px 24px;
    }
}
