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

/* body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #082756 0%, #0a3d7a 100%);
    color: #000;
    line-height: 1.8;
    overflow-x: hidden;
} */

.blog-header {
    background: linear-gradient(135deg, #082756 0%, #0a3d7a 50%, #082756 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(247, 170, 33, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 170, 33, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.blog-header h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.blog-header .lead {
    font-size: 2.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    color: #fff;
}

.accent-bar {
    width: 80px;
    height: 4px;
    background: #F7AA21;
    margin: 20px auto;
    border-radius: 2px;
}

.main-container {
    background: #fff;
    /* max-width: 1200px; */
    margin: -40px auto 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.content-wrapper {
    padding: 60px 40px;
}

.short-answer {
    background: linear-gradient(135deg, #F7AA21 0%, #ffb835 100%);
    color: #082756;
    padding: 25px 30px;
    margin: 0 0 40px;
    border-radius: 15px;
    font-size: 2.1rem;
    box-shadow: 0 5px 20px rgba(247, 170, 33, 0.3);
    border-left: 5px solid #082756;
    font-weight: 500;
}

.short-answer strong {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 2.15rem;
}

.blog-content h2 {
    color: #082756;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.blog-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #F7AA21;
    border-radius: 2px;
}

.blog-content h3 {
    color: #082756;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-content p {
    margin-bottom: 20px;
    color: #333;
    font-size: 2.05rem;
}

.blog-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.blog-content ul li {
    padding: 15px 20px 15px 50px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid #F7AA21;
}

.blog-content ul li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #F7AA21;
    font-weight: bold;
    font-size: 2.3rem;
}

.blog-content ul li:hover {
    background: #fff;
    box-shadow: 0 3px 15px rgba(8, 39, 86, 0.1);
    transform: translateX(5px);
}

.step-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #F7AA21;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(247, 170, 33, 0.2);
}

.step-card h3 {
    margin-top: 0;
    color: #082756;
}

.accordion-header button {
    color: #000;
    font-size: 2rem;
}

.faq-section {
    background: #f8f9fa;
    padding: 50px 40px;
    margin-top: 6px;
    border-radius: 0 0 20px 20px;
}

.faq-section h3 {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: #fff;
    color: #000;
    font-weight: 600;
    font-size: 2.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #082756 0%, #0a3d7a 100%);
    color: #fff;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F7AA21'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F7AA21'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: #fff;
    padding: 25px;
    color: #333;
    font-size: 2.05rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #F7AA21 0%, #ffb835 100%);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 2.2rem;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(247, 170, 33, 0.4);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 170, 33, 0.6);
    border-color: #082756;
    color: #000;
}


a {
    color: #F7AA21;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

a:hover {
    color: #082756;
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(8, 39, 86, 0.05) 0%, rgba(247, 170, 33, 0.05) 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #F7AA21;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 3rem;
    }

    .content-wrapper {
        padding: 40px 25px;
    }

    .faq-section {
        padding: 40px 25px;
    }

    .blog-content h2 {
        font-size: 2.6rem;
    }
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
}

.accordion-item h2 {
    margin: 0;
    padding: 0;

}