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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2980b9;
}

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

.main-article {
    background-color: #ffffff;
}

.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 18px;
    font-weight: 700;
}

.article-meta {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 400;
    font-style: italic;
}

.hero-image-container {
    margin-bottom: 50px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    color: #1a252f;
    margin-top: 55px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 600;
}

.inline-image {
    margin: 45px 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

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

.preview-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.preview-card img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    background-color: #dee2e6;
}

.preview-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.preview-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 24px 18px;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 20px;
}

.preview-card .cta-button {
    margin: 0 24px 24px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.testimonial-inline {
    background-color: #f1f8ff;
    border-left: 4px solid #3498db;
    padding: 28px 32px;
    margin: 45px 0;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 0;
}

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

.contact-form-section h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 16px;
}

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

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    background-color: #fef9e7;
    border-left: 3px solid: #f39c12;
    padding: 24px 28px;
    margin-top: 50px;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 0;
}

.cta-inline {
    background-color: #e8f5e9;
    padding: 38px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-inline h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 16px;
}

.cta-inline p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 24px;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    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: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 30px;
    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: 20px 30px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 2000;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

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

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-1px);
}

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.contact-block h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 28px;
    margin-top: 0;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 0;
}

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

.contact-image {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.contact-text {
    margin: 40px 0;
}

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

.contact-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #2980b9;
    text-decoration: underline;
}

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

.service-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-details h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 12px;
}

.service-cta:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.pricing-note {
    background-color: #f8f9fa;
    padding: 32px 36px;
    border-radius: 8px;
    margin: 50px 0;
}

.pricing-note h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 16px;
}

.pricing-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 14px;
}

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

.legal-content {
    max-width: 800px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #5a6c7d;
}

.legal-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}

.cookie-manage-button {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-manage-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: 700;
}

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

.thanks-content {
    text-align: left;
    margin-top: 40px;
}

.thanks-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 24px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px 24px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0 50px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 0;
}

.thanks-footer {
    margin-top: 50px;
    text-align: center;
}

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .article-header h1 {
        font-size: 32px;
    }

    .article-meta {
        font-size: 16px;
    }

    .article-content {
        font-size: 17px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

    .article-content h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
    }

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

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