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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #ffffff;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-minimal {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    padding: 80px 60px;
    background-color: #fafafa;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.display-large {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.cta-tertiary {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    margin-left: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-tertiary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.hero-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
}

.value-statement {
    padding: 120px 60px;
    background-color: #ffffff;
}

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

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

.heading-premium {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.paragraph-spaced {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.services-grid {
    padding: 120px 60px;
    background-color: #fafafa;
}

.heading-section {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
}

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

.service-card-minimal:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image-container img {
    width: 100%;
    display: block;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.btn-select-service {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.cta-section-inline {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.heading-centered {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-centered-large {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.cta-centered {
    text-align: center;
}

.trust-indicators {
    padding: 120px 60px;
    background-color: #ffffff;
}

.trust-block {
    margin-bottom: 70px;
}

.trust-block h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.trust-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.form-section {
    padding: 120px 60px;
    background-color: #fafafa;
}

.heading-form {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 50px;
}

.form-minimal {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    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: #ffffff;
    padding: 30px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    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: 40px;
}

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

.cookie-content a {
    color: #0066cc;
}

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

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

.btn-cookie-accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

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

.page-header {
    padding: 80px 60px 40px;
    background-color: #fafafa;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-intro {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
}

.about-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-block {
    margin-bottom: 80px;
}

.about-block img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 40px;
    background-color: #e0e0e0;
}

.about-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

.cta-about {
    padding: 100px 60px;
    background-color: #fafafa;
    text-align: center;
}

.cta-about h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #444;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-detail-block {
    margin-bottom: 100px;
}

.service-detail-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.service-detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    display: block;
}

.service-detail-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
    margin: 30px 0 15px;
}

.service-includes {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 60px;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.contact-note {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

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

.thanks-heading {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 50px;
}

.thanks-details {
    background-color: #f0f7ff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.selected-service-info,
.selected-price-info {
    font-size: 17px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.steps-list {
    margin-left: 20px;
    margin-bottom: 50px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

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

.thanks-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.legal-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #444;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .display-large {
        font-size: 42px;
    }

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

    .hero-minimal {
        padding: 40px 20px;
    }

    .value-statement,
    .services-grid,
    .form-section,
    .trust-indicators {
        padding: 60px 20px;
    }

    .heading-premium,
    .heading-section {
        font-size: 36px;
    }

    .service-card-minimal {
        flex-direction: column;
        gap: 30px;
    }

    .service-card-minimal:nth-child(even) {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .page-title {
        font-size: 38px;
    }

    .cta-tertiary {
        margin-left: 0;
        margin-top: 15px;
    }
}