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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.hero-editorial {
    margin-top: 40px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.editorial-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.editorial-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.editorial-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.editorial-content h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 24px;
}

.editorial-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.editorial-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.editorial-content li {
    font-size: 18px;
    margin-bottom: 12px;
}

.inline-image-wrapper {
    margin: 40px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-section {
    background-color: #fafafa;
    padding: 60px 0;
}

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

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

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-left: 12px;
}

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

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

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

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

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

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 16px;
}

.consultation-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.consultation-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

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

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

.final-thoughts {
    background-color: #ecf0f1;
    padding: 60px 0;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-1px);
}

.about-hero {
    margin-top: 20px;
}

.about-image-wrapper {
    margin: 32px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-hero {
    padding: 60px 0 40px;
    background-color: #fafafa;
}

.services-list {
    padding: 40px 0;
}

.service-full {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.service-full:nth-child(even) {
    flex-direction: column-reverse;
}

.service-image {
    width: 100%;
    background-color: #f5f5f5;
}

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

.service-details {
    padding: 32px;
}

.service-details h2 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.service-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #2c3e50;
}

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

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

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

.services-note {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.contact-section {
    padding: 60px 0;
}

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

.contact-info h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info h2:first-of-type {
    margin-top: 0;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 16px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    margin-top: 32px;
}

.contact-image {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-map {
    margin-top: 40px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-map h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-map p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-message {
    margin: 40px 0;
}

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-service-info p {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 32px auto;
    list-style: none;
}

.next-steps li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.thanks-image {
    margin-top: 48px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #ffffff;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

@media (min-width: 768px) {
    .service-full {
        flex-direction: row;
    }

    .service-full:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-image,
    .service-details {
        width: 50%;
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info,
    .contact-image {
        width: 48%;
    }
}

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

    .nav {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }

    .ad-notice {
        width: 100%;
        text-align: center;
    }

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

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

    .lead-text {
        font-size: 19px;
    }

    .editorial-content p {
        font-size: 16px;
    }

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

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

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

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

    .btn-secondary {
        margin-left: 0;
    }
}