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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2d3748;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2d3748;
    color: #ffffff;
}

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

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

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e0;
}

.cta-button {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #3182ce;
}

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

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

.intro-section {
    background-color: #ffffff;
}

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

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.services-cards {
    background-color: #f7fafc;
}

.services-cards h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a202c;
}

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

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

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

.card-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d3748;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #718096;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 18px;
}

.select-service-btn {
    width: 100%;
    background-color: #4299e1;
    color: #ffffff;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #3182ce;
}

.form-section {
    background-color: #edf2f7;
}

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

.selected-service-display {
    background-color: #bee3f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: center;
}

.selected-service-display p {
    font-size: 18px;
    color: #2c5282;
    margin-bottom: 8px;
}

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

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

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

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

.submit-button {
    width: 100%;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-us-section {
    background-color: #ffffff;
}

.why-us-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    flex: 1;
}

.why-us-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.why-us-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.testimonials-section {
    background-color: #f7fafc;
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

.disclaimer-section {
    background-color: #edf2f7;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #718096;
    text-align: center;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.page-header {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    background-color: #ffffff;
}

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

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #1a202c;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.content-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #f7fafc;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d3748;
}

.sidebar-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 16px;
}

.values-list li:last-child {
    border-bottom: none;
}

.cta-section {
    background-color: #edf2f7;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 28px;
}

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

.info-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3748;
}

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

.info-list {
    list-style: none;
    margin-top: 16px;
}

.info-list li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 16px;
}

.services-list-section {
    background-color: #ffffff;
}

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

.service-detail-card {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    gap: 40px;
}

.service-detail-image {
    flex: 0 0 280px;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e2e8f0;
}

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

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d3748;
}

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

.thanks-content .highlight {
    font-weight: 600;
    color: #2d3748;
}

.legal-content {
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #1a202c;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px 0;
    color: #2d3748;
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: #4a5568;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .hero-image {
        min-height: 300px;
    }

    .why-us-section .container {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

    .service-detail-image {
        flex: 0 0 240px;
    }
}