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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

.editorial-flow {
    background-color: #fafafa;
}

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

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

.hero-image-container {
    width: 100%;
    height: 480px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    color: #1a252f;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 24px;
}

.intro-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.image-break {
    margin: 60px 0;
}

.inline-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-section {
    margin-bottom: 50px;
}

.story-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.story-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

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

.services-preview h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 600;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    padding: 24px;
}

.card-image {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

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

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

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

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

.btn-select {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

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

.form-section {
    margin: 60px 0;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-section {
    margin: 50px 0;
}

.trust-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.trust-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 600;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 12px;
    color: #34495e;
}

.testimonial cite {
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
}

.final-section {
    margin: 50px 0;
}

.final-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.final-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.page-hero {
    margin-bottom: 50px;
}

.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a252f;
    font-weight: 700;
}

.team-section {
    margin: 50px 0;
}

.team-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.values-section {
    margin: 50px 0;
}

.values-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

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

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-direction: column;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 600;
}

.service-text p {
    font-size: 17px;
    margin-bottom: 16px;
}

.price-display {
    margin: 24px 0;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-right: 8px;
}

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

.contact-details {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.contact-info h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 600;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 16px;
}

.contact-info .note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 20px;
}

.contact-image {
    width: 100%;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    color: #555;
}

.thanks-page {
    text-align: center;
}

.thanks-hero {
    margin-bottom: 50px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 36px;
    color: #1a252f;
    font-weight: 700;
}

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

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    font-size: 17px;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

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

.info-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 600;
}

.info-section p {
    font-size: 17px;
    margin-bottom: 20px;
}

.navigation-section {
    margin: 50px 0;
    text-align: left;
}

.navigation-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 600;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: block;
    padding: 20px 24px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 17px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.link-card:hover {
    background-color: #f8f9fa;
    border-color: #3498db;
}

.legal-page {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
    font-weight: 700;
}

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

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.cookie-detail {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.cookie-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 600;
}

.cookie-detail p {
    font-size: 15px;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 40px;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .content-wrapper {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}