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

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

.header-minimal {
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-inline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-inline a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-inline a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.editorial-main {
    padding: 60px 0;
}

.hero-editorial {
    margin-bottom: 70px;
}

.headline-large {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-image-container {
    margin-top: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.intro-text {
    font-size: 19px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
}

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

.inline-cta-box {
    background-color: #f0f4f8;
    padding: 35px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: center;
}

.inline-cta-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #fafafa;
    border-left: 4px solid #2563eb;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 15px;
    color: #777;
}

.services-preview {
    margin: 70px 0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

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

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

.price-tag {
    font-size: 24px;
    font-weight: 600;
    color: #2563eb;
    margin: 15px 0;
}

.btn-select {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.btn-select:hover {
    background-color: #1d4ed8;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 30px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f3f4f6;
    color: #6b7280;
}

.form-notice {
    margin: 20px 0;
}

.form-notice p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.form-notice a {
    color: #2563eb;
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

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

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

.page-header {
    margin-bottom: 50px;
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 280px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-info h2 {
    font-size: 26px;
    margin-bottom: 18px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.service-info ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-info ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.service-price {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.contact-info-section {
    display: flex;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-image {
    flex: 1;
    min-width: 280px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #eff6ff;
    border-radius: 8px;
    text-align: center;
}

.cta-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: #555;
}

.cta-section a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
}

.cta-section a:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

.thanks-section {
    text-align: center;
    padding: 60px 0;
}

.thanks-content {
    margin: 50px 0;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    color: #059669;
}

.thanks-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid #2563eb;
    transition: all 0.3s ease;
}

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

.legal-content {
    font-size: 15px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 19px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content p {
    margin-bottom: 15px;
    color: #444;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #059669;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6b7280;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .headline-large {
        font-size: 32px;
    }

    .subheadline {
        font-size: 18px;
    }

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

    .contact-info-section {
        flex-direction: column;
    }

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

    .nav-inline {
        gap: 15px;
        font-size: 14px;
    }
}