* {
    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;
}

.navbar {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.ad-disclosure {
    background-color: #ffc107;
    color: #1a1a2e;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffc107;
}

.editorial-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-article {
    margin-bottom: 4rem;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 2.5rem;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.article-content {
    line-height: 1.8;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 600;
}

.lead-text {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.inline-section {
    margin-bottom: 4rem;
}

.inline-image-left {
    float: left;
    width: 60%;
    margin: 0 2rem 1.5rem 0;
    background-color: #f5f7fa;
    border-radius: 6px;
    overflow: hidden;
}

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

.services-inline {
    margin: 4rem 0;
}

.service-card-inline {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.service-card-inline.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    background-color: #eef2f7;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
}

.service-text h3 {
    margin-top: 0;
    color: #1a1a2e;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.cta-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.testimonial-section {
    margin: 5rem 0;
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    border-left: 5px solid #3498db;
}

.testimonial {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #95a5a6;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    color: #34495e;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.contact-form {
    margin-top: 2rem;
}

.selected-service {
    background-color: #d4edda;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.selected-service.hidden {
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.6;
}

.footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

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

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

.services-detailed .service-detail-card {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #ecf0f1;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-image {
    flex: 0 0 40%;
    background-color: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.btn-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.email-text {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2c3e50;
}

.small-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.legal-page .article-content {
    font-size: 1rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.thanks-content {
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-info {
    background-color: #d4edda;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #c3e6cb;
}

.selected-service-display {
    font-weight: 700;
    font-size: 1.2rem;
    color: #155724;
    margin-top: 0.5rem;
}

.next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 600px;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .editorial-layout {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .inline-image-left {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }

    .service-card-inline,
    .service-card-inline.reverse {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }

    .services-detailed .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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