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

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

.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: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-card {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 64px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

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

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

.problem-amplification {
    padding: 80px 0;
    background-color: #ffffff;
}

.problem-amplification h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.impact-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff5f5;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

.impact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #c53030;
}

.impact-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

.insight-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.insight-card img {
    flex: 1;
    min-width: 400px;
    height: 400px;
    object-fit: cover;
    background-color: #e9ecef;
}

.insight-text {
    flex: 1;
    padding: 48px;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.insight-text p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.trust-building {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid #28a745;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-card .author {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
}

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

.services-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

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

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

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

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

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

.service-card h3 {
    font-size: 22px;
    padding: 24px 24px 8px;
    color: #1a202c;
}

.service-card p {
    padding: 0 24px 16px;
    color: #4a5568;
    line-height: 1.6;
}

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

.service-card .select-service,
.service-card button {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
}

.service-card .select-service:hover,
.service-card button:hover {
    background-color: #0056b3;
}

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

.form-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

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

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

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

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

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 64px 0 32px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer-disclaimer {
    border-top: 1px solid #495057;
    padding-top: 32px;
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #5a6268;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 64px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.thanks-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-confirmation p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.back-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #0056b3;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 20px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.content-card.reverse {
    flex-direction: row-reverse;
}

.content-card img {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.content-text p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.features-list {
    list-style: none;
    padding: 0 24px 16px;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.reason-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.reason-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

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

.contact-info-card,
.contact-map-card {
    flex: 1;
    min-width: 320px;
}

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

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #495057;
}

.info-block p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    background-color: #e9ecef;
    margin-bottom: 16px;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-note {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    background-color: #f8f9fa;
    padding: 64px;
    border-radius: 12px;
}

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

.contact-cta p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 8px;
    color: #1a202c;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #495057;
}

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

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

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

.legal-content a {
    color: #007bff;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #4a5568;
}

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

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

    .card-grid,
    .testimonial-grid,
    .service-cards,
    .values-grid,
    .reasons-grid {
        flex-direction: column;
    }

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

    .insight-card img {
        min-width: 100%;
    }

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

    .nav-links {
        gap: 16px;
    }

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

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