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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 34px;
    z-index: 999;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

.main-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1a252f;
    font-weight: 700;
}

.article-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
}

.header-image {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e0e0e0;
}

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

.article-content {
    font-size: 19px;
    line-height: 1.8;
}

.article-content section {
    margin-bottom: 50px;
}

.lead-paragraph {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 45px;
    color: #1a252f;
    font-weight: 700;
}

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

.inline-image {
    margin: 45px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e0e0e0;
}

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

.inline-image-small {
    margin: 30px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e0e0e0;
}

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

.inline-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #2980b9;
    cursor: pointer;
}

.testimonial-inline {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 30px 35px;
    margin: 35px 0;
}

.testimonial-inline blockquote {
    font-style: italic;
    color: #34495e;
}

.testimonial-inline p {
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
    font-size: 16px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 35px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 0;
    color: #1a252f;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0 20px;
    font-family: 'Arial', sans-serif;
}

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

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

.contact-form {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 40px;
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-left: 4px solid: #ffc107;
    padding: 25px 30px;
    margin: 50px 0 30px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
    margin-bottom: 0;
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #3498db;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.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;
}

.legal-content {
    font-size: 17px;
}

.legal-content ul {
    margin: 20px 0 20px 40px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 35px 0;
}

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

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

.thanks-section {
    text-align: center;
    padding: 40px 0;
}

.thanks-content {
    text-align: left;
    margin-top: 40px;
}

.next-steps-list,
.preparation-list {
    margin: 25px 0 25px 40px;
    font-size: 17px;
}

.next-steps-list li,
.preparation-list li {
    margin-bottom: 12px;
}

.thanks-cta {
    text-align: center;
    margin-top: 50px;
}

.button-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

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

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .article-content {
        font-size: 17px;
    }

    .lead-paragraph {
        font-size: 20px;
    }

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

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

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

    .cookie-buttons {
        flex-direction: column;
    }

    .service-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }
}