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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #2980b9;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 3px;
}

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

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

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

.article-subtitle {
    font-size: 20px;
    color: #7f8c8d;
    font-style: italic;
    font-weight: 400;
}

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

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

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

.article-body h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.article-image {
    margin: 40px 0;
    background-color: #e8e8e8;
    overflow: hidden;
    border-radius: 4px;
}

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

.cta-inline {
    background: #ecf7f3;
    padding: 35px;
    margin: 45px 0;
    border-left: 4px solid #27ae60;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cta-inline p {
    margin-bottom: 18px;
    font-size: 17px;
}

.cta-link {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 16px;
}

.cta-link:hover {
    background: #229954;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 35px 0;
    font-size: 17px;
}

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

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

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

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

.service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-select {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #2980b9;
}

.order-form {
    background: #f8f9fa;
    padding: 35px;
    margin: 40px 0;
    border-radius: 6px;
    border: 2px solid #27ae60;
}

.order-form.hidden {
    display: none;
}

.order-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-selected-service {
    background: #fff;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    background: #f5f5f5;
    padding: 25px;
    margin: 50px 0;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
}

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

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

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

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

.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: 14px;
    transition: color 0.3s;
}

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

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

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

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

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content {
    font-size: 17px;
    line-height: 1.7;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.page-content ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
}

.service-card .price {
    font-size: 26px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #2c3e50;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 50px 30px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.thanks-service {
    background: #ecf7f3;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
    font-size: 18px;
    color: #2c3e50;
}

.btn-home {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 25px;
    font-size: 17px;
    transition: background 0.3s;
}

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

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

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

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

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

    .service-card {
        flex: 1 1 100%;
    }

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