* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background-color: #fefefe;
}

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

.navigation {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 100px;
}

.hero-header {
    margin-bottom: 60px;
}

.hero-image-container {
    margin: 0 -30px 40px;
    background-color: #e9ecef;
}

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

.main-headline {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    font-weight: 400;
}

.content-section {
    margin: 80px 0;
}

.text-block {
    margin-bottom: 50px;
}

.text-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #3d4852;
}

.text-block p a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
    transition: border-color 0.3s ease;
}

.text-block p a:hover {
    border-bottom-color: transparent;
}

.inline-image-section {
    margin: 60px 0;
    background-color: #f8f9fa;
    padding: 10px;
}

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

.insight-section {
    background-color: #f5f7fa;
    padding: 60px 50px;
    margin: 80px -30px;
}

.insight-container h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
}

.insight-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.insight-columns {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.insight-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.insight-item p a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.testimonial-section {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #fafbfc;
    border-left: 4px solid #3498db;
}

.testimonial {
    font-style: italic;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonial footer {
    font-style: normal;
    font-size: 16px;
    color: #6c757d;
}

.cta-inline {
    text-align: center;
    margin: 60px 0;
    padding: 40px 30px;
    background-color: #ecf0f1;
}

.cta-inline p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #2980b9;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    padding: 35px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 12px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.service-select-btn:hover {
    background-color: #2980b9;
}

.service-card.selected {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-section {
    margin: 80px 0;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

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

.form-intro {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.submit-btn {
    padding: 14px 40px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.reference-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9fafb;
    border-top: 2px solid #e5e7eb;
}

.reference-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a252f;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

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

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

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #e74c3c;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #27ae60;
    color: #fff;
}

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #6c7a7b;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .main-headline {
        font-size: 32px;
    }

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

    .editorial-content {
        padding: 40px 20px 60px;
    }

    .hero-image-container {
        margin: 0 -20px 30px;
    }

    .insight-section {
        padding: 40px 30px;
        margin: 60px -20px;
    }

    .form-section {
        padding: 40px 30px;
    }

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

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

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-container .selected-service {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.page-header h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #34495e;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #5a6c7d;
}

.contact-info .email {
    color: #2c3e50;
    font-weight: 500;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background-color: #fff;
    border: 1px solid #e1e8ed;
    padding: 30px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-item .price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}