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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-accept {
    background: #4CAF50;
    color: white;
}

.cookie-accept:hover {
    background: #45a049;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-editorial {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 3px;
}

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

.nav-links a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

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

.article-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.article-intro {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.8;
}

.article-intro p {
    margin-bottom: 20px;
}

.article-section {
    margin: 50px 0;
}

.article-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.article-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.article-section a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-section a:hover {
    color: #004499;
    text-decoration: underline;
}

.article-image-block {
    margin: 50px -20px;
    overflow: hidden;
}

.article-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image-block-small {
    margin: 40px auto;
    max-width: 500px;
}

.article-image-block-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cta-inline {
    margin: 50px 0;
    text-align: center;
    padding: 40px 0;
    border-top: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
}

.cta-link {
    font-size: 22px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 2px solid #0066cc;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #004499;
    border-bottom-color: #004499;
}

.cta-inline-secondary {
    margin: 40px 0;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #0066cc;
    font-size: 18px;
}

.cta-inline-secondary a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-inline-secondary a:hover {
    color: #004499;
    text-decoration: underline;
}

.highlight-section {
    background: #fff8e1;
    padding: 40px;
    margin: 60px -20px;
    border-left: 5px solid #ffc107;
}

.testimonial-section {
    margin: 60px 0;
    padding: 40px 0;
    background: #f5f5f5;
    margin-left: -20px;
    margin-right: -20px;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.services-preview {
    margin: 70px 0;
    padding: 60px 0;
    background: white;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.services-preview > p {
    text-align: center;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: #fafafa;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.duration {
    font-size: 15px;
    color: #666;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-select {
    background: #0066cc;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select:hover {
    background: #0052a3;
}

.form-section {
    margin: 70px 0;
    padding: 50px 40px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-submit {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1b5e20;
}

.disclaimer-section {
    background: #fff3cd;
    padding: 30px;
    margin: 60px -20px;
    border-left: 4px solid #ff9800;
}

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

.references-section {
    margin: 50px 0;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.references-list a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    background: #ff5722;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.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: 20px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-service {
    background: #f5f5f5;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    font-size: 18px;
}

.thanks-service strong {
    color: #1a1a1a;
}

.btn-home {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #0052a3;
}

.page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 20px;
}

.page-container h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.page-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.page-container li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    margin-top: 0;
}

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

.contact-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

.service-item {
    background: #fff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 0;
    color: #1a1a1a;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.service-duration {
    font-size: 15px;
    color: #777;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .article-intro {
        font-size: 18px;
    }

    .article-section h2 {
        font-size: 26px;
    }

    .article-section p {
        font-size: 17px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-button {
        padding: 15px 25px;
        font-size: 15px;
    }

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

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