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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.hero-editorial {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 0 24px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 22px;
    color: #6c757d;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 32px;
}

.content-flow {
    max-width: 100%;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-section,
.problem-section,
.solution-section,
.trust-section,
.services-preview,
.cta-section,
.disclaimer-section {
    margin: 60px 0;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 400;
}

.narrow-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.narrow-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 48px 0 24px;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 36px 0 20px;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.insight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 24px 28px;
    margin: 32px 0;
    border-radius: 4px;
}

.insight-box p {
    margin: 0;
    font-size: 19px;
    font-style: italic;
    color: #495057;
}

.inline-cta {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    margin: 24px 0;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #0056b3;
}

.testimonial-inline {
    background-color: #f1f3f5;
    padding: 28px 32px;
    margin: 32px 0;
    border-radius: 8px;
}

.testimonial-inline p {
    font-size: 19px;
    line-height: 1.7;
    color: #343a40;
    margin-bottom: 12px;
}

.testimonial-inline span {
    font-size: 16px;
    color: #6c757d;
    font-style: italic;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 28px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.service-card p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 16px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

.text-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #0056b3;
}

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

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

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

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

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

.submit-btn {
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.disclaimer {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin: 40px 0;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 24px 24px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 24px;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.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;
}

.page-header {
    background-color: #f8f9fa;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.header-subtitle {
    font-size: 20px;
    color: #6c757d;
}

.about-intro,
.services-section,
.contact-section {
    padding: 40px 0;
}

.cta-box {
    background-color: #007bff;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 48px 0;
}

.cta-box h3 {
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cta-box p {
    color: #e3f2fd;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #007bff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.services-list {
    margin: 40px 0;
}

.service-item {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #dee2e6;
}

.service-item:last-child {
    border-bottom: none;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 24px;
}

.service-content h2 {
    margin-top: 0;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 0;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

.service-info-box {
    background-color: #e7f3ff;
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
}

.service-info-box h3 {
    margin-top: 0;
    color: #0056b3;
}

.contact-grid {
    display: flex;
    gap: 48px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
    margin: 0;
}

.contact-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.contact-note p {
    margin: 0;
    font-size: 15px;
    color: #856404;
}

.contact-image-wrapper {
    flex: 1;
    min-width: 280px;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.location-info {
    margin: 40px 0;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.location-info h2 {
    margin-top: 0;
}

.thanks-section {
    padding: 60px 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #28a745;
    margin-bottom: 24px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info h2 {
    margin-top: 0;
}

.next-steps {
    margin: 40px 0;
}

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

.thanks-link {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #0056b3;
}

.contact-reminder {
    background-color: #e7f3ff;
    padding: 24px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-reminder p {
    margin: 0;
    font-size: 16px;
    color: #004085;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #495057;
}

.legal-page h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #6c757d;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.back-link {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #dee2e6;
}

.back-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .narrow-content h2 {
        font-size: 28px;
    }

    .narrow-content h3 {
        font-size: 22px;
    }

    .lead-text {
        font-size: 18px;
    }

    .narrow-content p {
        font-size: 16px;
    }

    .contact-form {
        padding: 24px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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

    .thanks-link {
        width: 100%;
        text-align: center;
    }
}