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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #1a252f;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

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

.editorial-container {
    background-color: #fff;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-overlay h1 {
    max-width: 720px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    color: #fff;
    font-weight: 400;
}

.content-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1a252f;
    margin-bottom: 28px;
    font-weight: 400;
}

.content-column p {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.story-section,
.insight-section,
.services-intro,
.trust-section,
.contact-form-section,
.disclaimer-section {
    margin-bottom: 60px;
}

h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 26px;
    font-weight: 400;
    color: #1a252f;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 14px;
    font-weight: 600;
    color: #2c3e50;
}

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

.btn-text {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-text:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.pillar-item {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid #3498db;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 14px;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-select {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.testimonial {
    margin: 35px 0;
    padding: 30px;
    background-color: #ecf0f1;
    border-left: 5px solid #95a5a6;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 14px;
}

.testimonial footer {
    font-style: normal;
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 12px;
}

.inquiry-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.disclaimer-section {
    padding: 30px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
}

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

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

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-note {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #3498db;
    padding: 20px 30px;
    display: none;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.thanks-container {
    max-width: 680px;
    margin: 80px auto;
    padding: 60px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 18px;
}

.thanks-container .btn-text {
    margin-top: 30px;
}

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

    .content-column {
        padding: 30px 20px;
    }

    h2 {
        font-size: 26px;
    }

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}