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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    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: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

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

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

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    padding: 40px 50px;
    border-radius: 4px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.story-intro,
.story-continuation {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #ffffff;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #3a4a5a;
    margin-bottom: 40px;
    font-weight: 300;
}

.story-intro h2,
.story-continuation h2,
.narrow-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a2530;
    margin: 50px 0 25px;
    line-height: 1.3;
}

.story-intro p,
.story-continuation p,
.narrow-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a5568;
}

.inline-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 2px;
    background-color: #f0f0f0;
}

a.reference {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #3182ce;
}

a.reference:hover {
    color: #2c5aa0;
    border-bottom-style: solid;
}

.criteria-list {
    margin: 25px 0;
    padding-left: 25px;
}

.criteria-list li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-inline {
    background-color: #f7fafc;
    border-left: 4px solid #4a5568;
    padding: 30px 40px;
    margin: 50px 0;
}

.testimonial-inline blockquote {
    font-style: normal;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #718096;
    font-style: normal;
    font-weight: 500;
}

.services-cards {
    background-color: #ffffff;
    padding: 80px 0;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fafafa;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    color: #1a2530;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5282;
    margin: 20px 0;
}

.cta-select {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.cta-select:hover {
    background-color: #1a202c;
}

.form-section {
    background-color: #f7fafc;
    padding: 80px 30px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 2px;
    border: 1px solid #e2e8f0;
}

.form-container h2 {
    font-size: 28px;
    color: #1a2530;
    margin-bottom: 30px;
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 2px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #edf2f7;
}

.btn-submit {
    width: 100%;
    background-color: #2c5282;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    background-color: #fffbeb;
    padding: 50px 30px;
    border-top: 1px solid #fbbf24;
    border-bottom: 1px solid #fbbf24;
}

.disclaimer {
    font-size: 14px;
    color: #78350f;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.references-section {
    background-color: #ffffff;
    padding: 50px 30px;
}

.references-section h3 {
    font-size: 22px;
    color: #1a2530;
    margin-bottom: 20px;
    font-weight: 600;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.references-list a {
    color: #3182ce;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 30px 30px;
}

.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: 200px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

.page-content {
    min-height: 60vh;
}

.page-header {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 30px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #cbd5e0;
}

.services-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.service-full {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 0 0 50%;
    background-color: #e8e8e8;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 36px;
    color: #1a2530;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-material {
    font-size: 16px;
    color: #718096;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-details p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-large {
    font-size: 40px;
    font-weight: 700;
    color: #2c5282;
    margin: 30px 0 25px;
}

.cta-link {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #1a202c;
}

.cta-bottom {
    background-color: #f7fafc;
    padding: 80px 30px;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 36px;
    color: #1a2530;
    margin-bottom: 20px;
}

.cta-bottom p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5282;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a4365;
}

.btn-secondary {
    display: inline-block;
    background-color: #718096;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #4a5568;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 0 0 40%;
    background-color: #e8e8e8;
}

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

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

.contact-section h2 {
    font-size: 24px;
    color: #1a2530;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-section ul {
    margin-top: 15px;
    padding-left: 25px;
}

.contact-section li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-note {
    font-size: 15px;
    color: #718096;
    font-style: italic;
}

.contact-note-section {
    background-color: #f7fafc;
    padding: 60px 30px;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a2530;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.thanks-message h2 {
    font-size: 28px;
    color: #1a2530;
    margin: 40px 0 20px;
    font-weight: 600;
}

.thanks-message p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.order-summary {
    background-color: #f7fafc;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #2c5282;
}

.order-summary h3 {
    font-size: 20px;
    color: #1a2530;
    margin-bottom: 15px;
}

.order-summary p {
    font-size: 16px;
    margin-bottom: 10px;
}

.next-steps {
    padding-left: 25px;
    margin: 25px 0;
}

.next-steps li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-emphasis {
    font-size: 19px;
    font-weight: 600;
    color: #2c5282;
}

.thanks-note {
    background-color: #fffbeb;
    padding: 20px;
    border-radius: 2px;
    border-left: 4px solid #fbbf24;
    font-style: italic;
    color: #78350f;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.thanks-visual {
    flex: 0 0 35%;
    background-color: #e8e8e8;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.legal-page {
    background-color: #ffffff;
}

.update-date {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
    text-align: center;
}

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

.legal-section h2 {
    font-size: 26px;
    color: #1a2530;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.legal-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-section a {
    color: #3182ce;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.cookies-table thead {
    background-color: #f7fafc;
}

.cookies-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    line-height: 1.6;
}

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-overlay {
        padding: 30px 25px;
        width: 90%;
    }

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

    .service-card {
        flex-direction: column !important;
    }

    .service-image-container {
        flex: 0 0 300px;
    }

    .service-full,
    .service-full.reverse {
        flex-direction: column;
    }

    .service-image-large {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-visual {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .thanks-visual {
        flex: 0 0 auto;
        width: 100%;
    }

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

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

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

    .btn-secondary {
        margin-left: 0;
    }
}