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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

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

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

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

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 35px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #e9ecef;
}

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

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

.lead {
    font-size: 20px;
    color: #555;
    margin-top: 15px;
    font-weight: 400;
}

.content-block {
    margin-top: 40px;
}

.text-container {
    max-width: 680px;
    margin: 0 auto;
}

.text-container p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #333;
}

.text-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 22px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-container h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

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

.highlight-box {
    background-color: #f0f8ff;
    border-left: 4px solid #3498db;
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin: 0;
    font-size: 17px;
    color: #2c3e50;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #777;
    font-style: normal;
}

.services-section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

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

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

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

.price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.form-container {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-container h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 26px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

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

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.text-container ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.text-container li {
    margin-bottom: 10px;
    color: #333;
}

.contact-info-block {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-info-block p {
    margin-bottom: 12px;
}

.small-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    text-align: center;
}

.thanks-content {
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content .lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ol {
    margin-left: 20px;
    line-height: 1.8;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 16px;
}

.thanks-service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #e7f3ff;
    border-radius: 4px;
    display: none;
}

.thanks-service-info p {
    margin: 0;
    font-size: 16px;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #dee2e6;
}

.contact-reminder p {
    margin-bottom: 10px;
    font-size: 15px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

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

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

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

.footer-info p {
    color: #95a5a6;
    font-size: 14px;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hero-text h1 {
        font-size: 32px;
    }

    .text-container h2 {
        font-size: 26px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .cta-group {
        flex-direction: column;
    }

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