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

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

.cookie-banner.active {
    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;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

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

.story-flow {
    background-color: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.intro-lead {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.inline-image,
.inline-image-small {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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

.inline-image-small {
    max-width: 500px;
    margin: 30px auto;
}

.story-section {
    margin: 35px 0;
}

.story-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: normal;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #34495e;
    font-weight: normal;
}

.story-section p {
    font-size: 17px;
    margin-bottom: 16px;
    text-align: justify;
}

.highlight-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
    margin: 40px 0;
}

.cta-inline {
    text-align: center;
    margin: 45px 0;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

.btn-primary:hover {
    background-color: #34495e;
}

.form-wrapper {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: normal;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.inquiry-form {
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-box strong {
    font-weight: bold;
}

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

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

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

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

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

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

.service-card .price {
    font-size: 28px;
    color: #27ae60;
    margin: 15px 0;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

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

.service-card ul {
    list-style: none;
    margin: 20px 0;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.service-card ul li:before {
    content: "→ ";
    color: #3498db;
    margin-right: 8px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin: 40px 0;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: normal;
}

.about-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.contact-content {
    background-color: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: normal;
}

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

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

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

.legal-content {
    background-color: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: normal;
}

.legal-content h3 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #34495e;
    font-weight: normal;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.thanks-page {
    max-width: 720px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #27ae60;
    font-weight: normal;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .story-flow {
        padding: 30px 20px;
    }

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

    .intro-lead {
        font-size: 17px;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

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