* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2d3748;
}

.ad-disclosure {
    font-size: 12px;
    color: #718096;
    padding: 4px 10px;
    background-color: #f7fafc;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a202c;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,32,44,0.85) 0%, rgba(45,55,72,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-text p {
    font-size: 22px;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #1a202c;
}

.story-intro p {
    font-size: 19px;
    margin-bottom: 28px;
    color: #4a5568;
}

.story-intro img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 45px 0;
    background-color: #edf2f7;
}

.problem-section {
    padding: 90px 20px;
    background-color: #f7fafc;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a202c;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #4a5568;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #edf2f7;
}

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
}

.insight-section p {
    font-size: 19px;
    margin-bottom: 28px;
    color: #4a5568;
}

.insight-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 45px 0;
    background-color: #edf2f7;
}

.trust-section {
    padding: 90px 20px;
    background-color: #2d3748;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.trust-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: #4a5568;
    padding: 35px;
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 16px;
    opacity: 0.9;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #f7fafc;
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a202c;
}

.testimonial {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #4299e1;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    color: #718096;
    font-style: normal;
}

.benefits-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.benefits-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
}

.benefit-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #edf2f7;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
}

.benefit-item p {
    font-size: 16px;
    color: #4a5568;
}

.services-preview {
    padding: 90px 20px;
    background-color: #f7fafc;
}

.services-preview h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

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

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.cta-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.cta-section p {
    font-size: 18px;
    text-align: center;
    color: #4a5568;
}

.form-section {
    padding: 70px 20px;
    background-color: #edf2f7;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    color: #1a202c;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4299e1;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f7fafc;
}

.disclaimer {
    font-size: 14px;
    color: #718096;
    text-align: center;
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #cbd5e0;
}

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

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

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 16px 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;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.service-detail.featured {
    background-color: #f7fafc;
    padding: 50px;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4a5568;
}

.service-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-content ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #2d3748;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 25px;
}

.price-label {
    font-size: 16px;
    color: #718096;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #edf2f7;
}

.cta-services {
    padding: 80px 20px;
    background-color: #2d3748;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #38a169;
}

.about-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.about-content {
    padding: 100px 20px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
}

.about-content p {
    font-size: 19px;
    margin-bottom: 28px;
    color: #4a5568;
}

.about-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin: 45px 0;
    background-color: #edf2f7;
}

.mission-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

.mission-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
}

.mission-content p {
    font-size: 19px;
    margin-bottom: 22px;
    color: #4a5568;
}

.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #f7fafc;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
}

.stats-section {
    padding: 80px 20px;
    background-color: #2d3748;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
}

.approach-section p {
    font-size: 19px;
    margin-bottom: 28px;
    color: #4a5568;
}

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

.cta-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

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

.contact-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.contact-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.no-link {
    pointer-events: none;
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 6px;
}

.info-note p {
    font-size: 15px;
    color: #4a5568;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #1a202c;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #4a5568;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #2d3748;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.last-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
}

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

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

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

.legal-content a {
    color: #4299e1;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2b6cb0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
    }

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

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

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

    .stats-grid {
        flex-direction: column;
    }
}