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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

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

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

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

.editorial-layout {
    background-color: #fff;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.main-content {
    padding: 40px 0;
}

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

.header-image {
    margin: 0 -20px 30px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.header-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.text-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.text-section p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #444;
}

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

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

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

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.service-inline {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.service-inline:last-child {
    border-bottom: none;
}

.service-inline h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 600;
}

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

.price {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin: 16px 0;
}

.cta-inline {
    padding: 12px 28px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

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

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-form-section > p {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
}

.editorial-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d0d0;
    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: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-1px);
}

.disclaimer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-section p {
    color: #bdc3c7;
    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 ease;
}

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

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

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

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

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

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

.service-card p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 22px;
    font-weight: 600;
    color: #27ae60;
    margin: 16px 0;
}

.service-card button {
    padding: 12px 24px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-header {
    background-color: #34495e;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #ecf0f1;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

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

.content-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #34495e;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

.content-section ul,
.content-section ol {
    margin: 16px 0 16px 24px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin-top: 30px;
}

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

.contact-info p {
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
}

.contact-info strong {
    color: #2c3e50;
}

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

.thanks-container h1 {
    font-size: 36px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

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

    .lead {
        font-size: 18px;
    }

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

    .nav-links {
        gap: 15px;
    }

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

    .contact-form-section {
        padding: 30px 20px;
    }

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