* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.content-narrow h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    color: #2c3e50;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #34495e;
    font-weight: 600;
}

.content-narrow ul {
    margin: 24px 0;
    padding-left: 24px;
}

.content-narrow li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
}

.insight-list {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
}

.insight-list li {
    list-style: none;
    position: relative;
    padding-left: 28px;
}

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

.inline-image-section {
    margin: 60px 0;
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.image-caption {
    padding: 20px 24px;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin: 0;
}

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

.btn-cta-text {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 32px;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-text:hover {
    background-color: #3498db;
    color: #ffffff;
}

.benefit-card {
    background-color: #e8f5e9;
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
    border-left: 4px solid #27ae60;
}

.benefit-card h3 {
    margin-top: 0;
    color: #27ae60;
}

.comparison-table {
    display: flex;
    gap: 24px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

.comparison-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.comparison-col p {
    font-size: 16px;
    margin-bottom: 12px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 60px 0;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card.featured {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    margin: 0 0 16px 0;
    font-size: 24px;
    color: #2c3e50;
}

.service-desc {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.service-card ul {
    margin: 24px 0;
    padding-left: 0;
}

.service-card li {
    list-style: none;
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid #ecf0f1;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin: 24px 0;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-section {
    margin: 60px 0;
    padding: 48px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.testimonial-section blockquote {
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
}

.testimonial-section cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.cta-section {
    margin: 60px 0 40px;
    text-align: center;
    padding: 48px 32px;
    background-color: #f0f8ff;
    border-radius: 8px;
}

.cta-section h3 {
    margin: 0 0 16px 0;
    font-size: 28px;
    color: #2c3e50;
}

.cta-section p {
    font-size: 18px;
    color: #7f8c8d;
}

.investment-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer {
    margin: 60px 0;
    padding: 32px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

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

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

.references h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #2c3e50;
}

.references p {
    font-size: 15px;
    margin-bottom: 12px;
}

.references a {
    color: #3498db;
    text-decoration: none;
}

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

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

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

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

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

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

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

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

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

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

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

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-col {
    flex: 1;
    min-width: 300px;
}

.contact-col h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-col p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 24px;
}

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

.thanks-message {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

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

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

.thanks-message a {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-message a:hover {
    background-color: #2980b9;
}

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

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

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

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

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

    .intro-text {
        font-size: 18px;
    }

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

    .comparison-table {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}