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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

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

.btn-cookie {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cookie-alt:hover {
    border-color: #95a5a6;
    color: #2c3e50;
}

.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
}

.nav-disclaimer {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #3498db;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.editorial-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 400;
}

.intro-text {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.editorial-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.editorial-content {
    font-size: 18px;
    line-height: 1.9;
}

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

.editorial-content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #1a252f;
}

.content-image-inline {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.inline-cta {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.text-link {
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.editorial-quote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #ecf0f1;
    border-left: 5px solid #95a5a6;
    font-style: italic;
    font-size: 19px;
    color: #34495e;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    padding: 30px;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 24px;
    color: #27ae60;
    font-weight: bold;
    display: block;
}

.inline-cta-center {
    text-align: center;
    margin: 50px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s;
}

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

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a252f;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.editorial-footer {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e1e8ed;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #7f8c8d;
}

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

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

.footer-section a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.disclaimer {
    padding: 25px;
    background-color: #f8f9fa;
    border: 1px solid #e1e8ed;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #95a5a6;
}

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

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-detail-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-card .service-price {
    font-size: 32px;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.service-detail-card ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

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

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

.content-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

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

.content-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-page ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

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

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

.thanks-message {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    text-align: center;
}

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

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

.thanks-message .btn-primary {
    margin-top: 30px;
}

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

    .nav-disclaimer {
        padding: 10px 0;
        text-align: center;
    }

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

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

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

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

    .editorial-content h2 {
        font-size: 26px;
    }

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

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