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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfbf7;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7c8fa5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

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

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

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

.btn-accept {
    background-color: #7c8fa5;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e9ecef;
    color: #555;
}

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

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

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4d8dc;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 60px;
    border-radius: 8px;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

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

.opening-paragraph {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
}

.content-narrow h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.inline-image-wrapper {
    margin: 50px 0;
    background-color: #e8ebed;
    border-radius: 8px;
    overflow: hidden;
}

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

.pull-quote {
    border-left: 4px solid #7c8fa5;
    padding-left: 30px;
    margin: 45px 0;
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    color: #555;
}

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

.text-link-arrow {
    font-size: 19px;
    color: #7c8fa5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link-arrow:hover {
    color: #5a6c7f;
}

.testimonial-inline {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 45px 0;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #34495e;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #7c8fa5;
    font-style: normal;
}

.services-editorial {
    margin: 50px 0;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

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

.service-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-detail {
    font-weight: 600;
    color: #7c8fa5;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
}

.btn-select-service {
    background-color: #7c8fa5;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #6a7b91;
    transform: translateY(-2px);
}

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

.form-section h2 {
    margin-top: 0;
}

.selected-service-display {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #7c8fa5;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #6a7b91;
    transform: translateY(-2px);
}

.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 45px 0;
    border-radius: 5px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-final {
    text-align: center;
    margin: 50px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #7c8fa5;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 45px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6a7b91;
    transform: translateY(-2px);
}

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

.references-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    list-style-position: inside;
    padding-left: 0;
}

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

.references-list a {
    color: #7c8fa5;
    text-decoration: none;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 40px 30px 40px;
}

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.page-header {
    background-color: #7c8fa5;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    font-weight: 300;
}

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

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card h3 {
    margin-top: 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    margin-top: 0;
}

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

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

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

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

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

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

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

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

    .content-narrow h2 {
        font-size: 26px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .cookie-banner {
        padding: 15px 20px;
    }

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