body {

    background-color: #f8fafc;
    color: #1f2937;
    overflow-x: hidden;
    margin: 0;

}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.header-content {
    position: relative;
    z-index: 1;
    padding: 6rem 1rem;
    text-align: center;
}
.section-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}
.section-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.benefit-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    background: #fef3c7;
    border-radius: 50%;
    padding: 0.5rem;
    display: inline-block;
}
.process-step {
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: background 0.3s ease;
}
.process-step:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -1rem;
    right: 1rem;
    background: #1e3a8a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: bold;
}
.challenge-card {
    background: #fff7ed;
    border-right: 5px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}
.challenge-card:hover {
    background: #ffedd5;
}
.future-card {
    background: #eff6ff;
    border-right: 5px solid #1e40af;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}
.future-card:hover {
    background: #dbeafe;
}
.content h1, .content h2, .content h3, .content h4 {
    color: #1e3a8a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.content h2::after, .content h3::after, .content h4::after {
    content: \'\';
    width: 60px;
    height: 4px;
    background: #f59e0b;
    position: absolute;
    right: 0;
    bottom: -8px;
}
.content p, .content ul, .content ol {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #4b5563;
}
.content ul li, .content ol li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-right: 1.5rem;
}
.content ul li::before {
    content: \'✔\';
    color: #f59e0b;
    position: absolute;
    right: 0;
}
.content ol li::before {
    content: \'➔\';
    color: #f59e0b;
    position: absolute;
    right: 0;
}
.cta-button {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}
.cta-button:hover {
    background: #d97706;
    transform: scale(1.05);
}
.cta-section {
    background: #1e3a8a;
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
    margin: 3rem 0;
}
.cta-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem auto;
    display: block;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}
@media (max-width: 768px) {
    .header-content {
        padding: 3rem 1rem;
    }
    .section-card {
        padding: 1.5rem;
    }
    .benefit-card {
        margin-bottom: 1.5rem;
    }
    .cta-section {
        padding: 2rem;
    }
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}