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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #ecf0f1;
    --white: #ffffff;
    --border-color: #bdc3c7;
    --success-color: #27ae60;
    --warning-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--background-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

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

.article-header {
    margin-bottom: 60px;
}

.header-image {
    margin-bottom: 40px;
    background-color: var(--background-light);
}

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

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.story-section,
.insight-section,
.solution-section,
.trust-section,
.testimonial-section,
.services-preview,
.form-section,
.disclaimer-section {
    margin-bottom: 60px;
}

.story-section p,
.insight-section p,
.solution-section p,
.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 50px;
    font-weight: 700;
    color: var(--primary-color);
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}

.inline-image {
    margin: 40px 0;
    background-color: var(--background-light);
}

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

.quote-block {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: var(--secondary-color);
}

.cta-inline {
    margin: 35px 0;
}

.cta-link {
    display: inline-block;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.method-cards {
    margin: 40px 0;
}

.method-card {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--background-light);
}

.method-card h3 {
    margin-top: 0;
}

.testimonial {
    margin: 35px 0;
    padding: 25px 30px;
    background-color: var(--background-light);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    text-align: right;
}

.service-list {
    margin: 40px 0;
}

.service-item {
    margin-bottom: 35px;
    padding: 30px;
    background-color: var(--background-light);
}

.service-content h3 {
    margin-top: 0;
}

.service-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.inquiry-form {
    margin: 40px 0;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    padding: 20px;
    background-color: var(--background-light);
    border-left: 3px solid var(--warning-color);
}

.main-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    margin-top: 80px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

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

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

.page-header {
    margin-bottom: 50px;
}

.about-page .values-list {
    margin: 40px 0;
}

.value-item {
    margin-bottom: 30px;
}

.cta-section {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--background-light);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

.services-page .services-intro {
    margin-bottom: 50px;
}

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

.service-detail {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image {
    background-color: var(--background-light);
}

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

.service-info ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-info ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price-display {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.select-service-btn:hover {
    background-color: var(--primary-color);
}

.services-footer {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--background-light);
    text-align: center;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

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

.contact-value {
    font-size: 18px;
    line-height: 1.6;
    margin: 15px 0;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual {
    background-color: var(--background-light);
}

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

.contact-faq {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 30px;
}

.thanks-page .thanks-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.thanks-content h1 {
    color: var(--success-color);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirm {
    padding: 20px;
    background-color: var(--background-light);
    margin: 20px 0;
    font-size: 16px;
}

.next-steps {
    margin: 40px 0;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.thanks-visual {
    background-color: var(--background-light);
}

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

.legal-page {
    max-width: 900px;
}

.legal-date,
.legal-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .service-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}