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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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 {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

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

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

.btn-cookie {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #357abd;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

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

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

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

.lead-text {
    font-size: 22px;
    line-height: 1.5;
    color: #4a4a4a;
    font-style: italic;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.inline-image-small {
    margin: 40px 0;
    width: 100%;
}

.inline-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.editorial-section {
    margin-bottom: 45px;
}

.editorial-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.editorial-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-section p {
    font-size: 19px;
    margin-bottom: 22px;
    color: #2c2c2c;
}

.editorial-section p strong {
    font-weight: 700;
    color: #1a1a1a;
}

.highlight-box {
    background-color: #f5f5f5;
    padding: 35px;
    border-left: 4px solid #4a90e2;
    margin: 50px 0;
}

.highlight-box h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.highlight-box p {
    font-size: 18px;
    color: #333333;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 48px;
    background-color: #2c7ab8;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary-large:hover {
    background-color: #1f5a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 122, 184, 0.4);
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #ffffff;
    border-left: 3px solid #d4d4d4;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: #666666;
    font-style: normal;
    font-family: 'Arial', sans-serif;
}

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

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

.service-card {
    background-color: #ffffff;
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: #4a90e2;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c7ab8;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    width: 100%;
    padding: 14px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select:hover {
    background-color: #357abd;
}

.btn-select.selected {
    background-color: #2c7ab8;
}

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

.form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.form-notice {
    background-color: #e8f4fd;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    border-left: 4px solid #4a90e2;
}

.form-notice p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-notice p:last-child {
    margin-bottom: 0;
}

.benefits-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2c7ab8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1f5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 184, 0.3);
}

.cta-final {
    text-align: center;
    margin: 60px 0;
    padding: 50px 30px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.cta-final h3 {
    font-size: 28px;
    margin-bottom: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.small-text {
    font-size: 14px !important;
    color: #666666 !important;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444444;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 32px;
    }

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

    .editorial-section p {
        font-size: 17px;
    }

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

    .nav-links {
        gap: 20px;
    }

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

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

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

    .form-section {
        padding: 24px;
    }

    .btn-submit {
        width: 100%;
    }
}

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

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

.page-header h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

.page-content {
    font-size: 17px;
    line-height: 1.8;
    color: #2c2c2c;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.page-content p {
    margin-bottom: 18px;
}

.page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 4px;
    margin: 30px 0;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333333;
    font-family: 'Arial', sans-serif;
}

.contact-info p strong {
    font-weight: 700;
    color: #1a1a1a;
}

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

.service-detail {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-detail h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

.service-detail .price {
    font-size: 26px;
    font-weight: 700;
    color: #2c7ab8;
    font-family: 'Arial', sans-serif;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2c7ab8;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 16px;
}

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