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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 20px;
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    background-color: #4a9eff;
    color: white;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #3a8eef;
}

.btn-cookie.btn-secondary {
    background-color: #555;
}

.btn-cookie.btn-secondary:hover {
    background-color: #444;
}

.navigation {
    background-color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.editorial-content {
    max-width: 100%;
    background-color: #ffffff;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #2c2c2c;
}

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

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

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

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

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

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.text-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.text-block p {
    margin-bottom: 18px;
    font-size: 18px;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    background-color: #f5f5f5;
}

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

.btn-text-link {
    display: inline-block;
    font-size: 18px;
    color: #4a9eff;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.btn-text-link:hover {
    border-bottom-color: #4a9eff;
}

.split-content {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    align-items: flex-start;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.services-introduction {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a9eff;
}

.services-introduction h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.services-introduction > p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #2c2c2c;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 15px 0;
}

.btn-service {
    padding: 12px 30px;
    background-color: #4a9eff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #3a8eef;
}

.testimonial-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #f4f4f4;
    border-left: 5px solid #2c2c2c;
}

.testimonial-section blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-section cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    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: #4a9eff;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    margin: 50px 0 30px;
    padding: 25px;
    background-color: #fff9e6;
    border: 1px solid #e6d9a6;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #e0e0e0;
}

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

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

.thanks-container .selected-service {
    font-weight: 600;
    color: #2c2c2c;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #4a9eff;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #3a8eef;
}

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

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .navigation {
        flex-direction: column;
        gap: 15px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 4px solid #4a9eff;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 400;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c2c2c;
}

.info-item p {
    font-size: 16px;
    color: #4a4a4a;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.services-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.services-page .intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    text-align: center;
    color: #4a4a4a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-image {
    margin: 40px 0;
    background-color: #f5f5f5;
}

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