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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

.article-content {
    margin-bottom: 40px;
}

.article-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.article-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.article-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.article-content li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.article-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.inline-image-right {
    float: right;
    width: 45%;
    margin: 20px 0 20px 30px;
    background-color: #f5f5f5;
}

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

.inline-image-left {
    float: left;
    width: 45%;
    margin: 20px 30px 20px 0;
    background-color: #f5f5f5;
}

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

.cta-inline {
    background-color: #ecf9ff;
    padding: 35px;
    margin: 50px 0;
    border-left: 4px solid #3498db;
}

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

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

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

.services-section {
    margin: 60px 0;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

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

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

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

.select-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-section > p {
    margin-bottom: 30px;
    color: #555;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.disclaimer {
    font-size: 14px;
    color: #6c757d;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-top: 50px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    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;
    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;
}

.cookie-content p {
    font-size: 15px;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.services-detailed {
    margin-top: 50px;
}

.service-detail {
    margin-bottom: 70px;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-image {
    margin: 25px 0;
    background-color: #f5f5f5;
}

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

.service-description {
    margin-top: 25px;
}

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

.contact-info-section {
    margin: 50px 0;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

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

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

.contact-image {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.thanks-content {
    text-align: center;
    padding: 80px 20px;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    margin: 30px 0;
}

.service-name {
    font-size: 18px;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.secondary-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #7f8c8d;
}

.legal-content h2 {
    font-size: 28px;
}

.legal-content h3 {
    font-size: 22px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

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

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

    .article-content p,
    .article-content li {
        font-size: 16px;
    }

    .inline-image-right,
    .inline-image-left {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

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

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .editorial-container {
        margin: 40px auto;
    }
}