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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #7fa3c7;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a7ba7;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6a6a6a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a5a5a;
}

.main-nav {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #4a7ba7;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    border-left: 2px solid #ddd;
    padding-left: 15px;
    margin-right: 15px;
}

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-weight: 700;
}

.subtitle {
    font-size: 22px;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    font-style: italic;
}

.intro-narrow,
.content-block,
.services-editorial,
.testimonial-section,
.form-section,
.disclaimer-section,
.values-section {
    max-width: 720px;
    margin: 0 auto 50px auto;
    padding: 0 30px;
}

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

.intro-narrow p,
.content-block p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.content-block h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 60px 0 30px 0;
    color: #2c2c2c;
    font-weight: 700;
}

.content-block h3 {
    font-size: 24px;
    margin: 40px 0 20px 0;
    color: #2c2c2c;
    font-weight: 600;
}

.content-block ul,
.content-block ol {
    margin: 20px 0 25px 30px;
    font-size: 18px;
}

.content-block li {
    margin-bottom: 12px;
    color: #3a3a3a;
}

.inline-image-right,
.inline-image-left {
    margin: 40px 0;
    overflow: hidden;
}

.inline-image-right {
    float: right;
    width: 45%;
    margin-left: 40px;
    margin-bottom: 30px;
}

.inline-image-left {
    float: left;
    width: 45%;
    margin-right: 40px;
    margin-bottom: 30px;
}

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

.services-editorial {
    max-width: 800px;
    margin: 80px auto;
}

.services-editorial h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 50px;
}

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

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.service-item h3,
.service-item h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.service-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.service-item ul {
    margin: 20px 0 25px 25px;
    font-size: 17px;
}

.service-item li {
    margin-bottom: 10px;
    color: #3a3a3a;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    margin: 25px 0 20px 0;
}

.cta-inline,
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-inline,
.btn-primary {
    background-color: #4a7ba7;
    color: #ffffff;
}

.cta-inline:hover,
.btn-primary:hover {
    background-color: #3a6b97;
}

.btn-secondary {
    background-color: #6a6a6a;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a5a5a;
}

.testimonial-editorial {
    border-left: 4px solid #4a7ba7;
    padding: 30px 40px;
    margin: 60px 0;
    background-color: #f9f9f9;
    font-style: italic;
}

.testimonial-editorial p {
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.testimonial-editorial footer {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    font-style: normal;
}

.principle-list {
    margin-top: 40px;
}

.principle {
    margin-bottom: 40px;
}

.principle h3 {
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.principle p {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.7;
}

.cta-section-editorial {
    text-align: center;
    padding: 80px 30px;
    margin: 80px 0;
}

.cta-section-editorial h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-section-editorial p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    max-width: 650px;
    margin: 80px auto;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.editorial-form {
    background-color: #f9f9f9;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.btn-submit {
    width: 100%;
    background-color: #4a7ba7;
    color: #ffffff;
    font-size: 18px;
    margin-top: 10px;
}

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

.disclaimer-section {
    max-width: 800px;
    margin: 60px auto 80px auto;
    padding: 0 30px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 3px solid #ccc;
}

.page-header {
    max-width: 720px;
    margin: 60px auto 40px auto;
    padding: 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c2c2c;
    line-height: 1.2;
}

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

.value-item h3 {
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 17px;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    color: #4a7ba7;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 30px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.thanks-info {
    margin: 50px 0;
    text-align: left;
}

.thanks-info p {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.legal-section {
    margin-bottom: 80px;
}

.legal-section h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.legal-section ul {
    margin: 20px 0 25px 30px;
    font-size: 17px;
}

.legal-section li {
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-top: 40px;
    font-style: italic;
}

.main-footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 60px 0 30px 0;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 30px 30px 0 30px;
    border-top: 1px solid #444;
    text-align: center;
}

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

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

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

    .ad-notice {
        border-left: none;
        border-top: 2px solid #ddd;
        padding: 15px 0 0 0;
        margin: 15px 0 0 0;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .inline-image-right,
    .inline-image-left {
        float: none;
        width: 100%;
        margin: 30px 0;
    }

    .content-block h2 {
        font-size: 30px;
    }

    .lead-text {
        font-size: 19px;
    }

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

    .cookie-buttons {
        margin-top: 15px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}