/* General Styles - Enhanced but maintaining theme */
/* Hero Section - Minor enhancements */
.hero-section {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 13rem 0 0;
}

.hero-content {
    background: rgba(255, 255, 255, 0.92);
    padding: 45px;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: transform 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #262b3e;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.hero-content h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffbc38;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #ffbc38;
    color: #262b3e;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(255, 188, 56, 0.3);
}

.cta-button:hover {
    background: #eea513;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 188, 56, 0.4);
}

/* Responsive Design - Maintained with slight improvements */
@media (max-width: 1024px) {
    /* .hero-section {
        height: auto;
        justify-content: center;
        padding: 70px 20px;
        text-align: center;
    } */

    /* .hero-content {
        max-width: 90%;
        text-align: center;
        margin: auto;
    } */

    .hero-content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 25px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* Hero Section - Left Side */
.hero-section-left {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 13rem;
}

.hero-content-left {
    background: rgba(255, 255, 255, 0.92);
    padding: 45px;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    text-align: left;
    transition: transform 0.3s ease;
}

.hero-content-left:hover {
    transform: translateY(-5px);
}

.hero-content-left h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #262b3e;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
}

.hero-content-left h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffbc38;
}

.hero-content-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button-left {
    display: inline-block;
    background: #ffbc38;
    color: #262b3e;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(255, 188, 56, 0.3);
}

.cta-button-left:hover {
    background: #eea513;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 188, 56, 0.4);
}

/* Responsive Design for Left Section */
@media (max-width: 1024px) {
    .hero-section-left {
        height: auto;
        justify-content: center;
        padding: 70px 20px;
        text-align: center;
    }

    .hero-content-left {
        max-width: 90%;
        text-align: center;
        margin: auto;
    }

    .hero-content-left h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-content-left {
        padding: 30px;
    }

    .hero-content-left h1 {
        font-size: 1.5rem;
    }

    .hero-content-left p {
        font-size: 0.95rem;
    }

    .cta-button-left {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content-left {
        padding: 25px;
        max-width: 100%;
    }

    .hero-content-left h1 {
        font-size: 1.3rem;
    }

    .hero-content-left p {
        font-size: 0.9rem;
    }

    .cta-button-left {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* Section Styles - Subtle enhancements */
/* .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}
 */
/* h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 25px;
    color: #262b3e;
    position: relative;
    padding-bottom: 12px;
} */

/* h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffbc38;
}
 */
/*
p {
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.7;
    color: #555;
}


.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
}

/* Coverage List - Enhanced styling */
/* .coverage-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.coverage-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
}

.coverage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffbc38;
    font-size: 1.2rem;
    font-weight: bold;
} */

/* How It Works - Minor enhancements */
/* .steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}
 */
/* FAQ - Subtle enhancements */
.faq {
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.faq h3 {
    font-size: 1.3rem;
    color: #262b3e;
    margin-bottom: 12px;
}

/* Services Section - Minor enhancements */
/* .csjXEk .service-list-wrapper {
    flex-wrap: nowrap;
    gap: 20px;
}

.service-item {
    transition: transform 0.3s ease;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: background 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    background: #ffbc38;
}
 */
/* Advantages/Disadvantages lists - Enhanced styling */
/* #mainkey ul {
    list-style: none;
    padding-left: 0;
}

#mainkey ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

#mainkey ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffbc38;
    font-weight: bold;
}

#mainkey {
    background-color: #f8f9fa;
    color: #273133;
    font-size: 18px;
    line-height: 1.6 !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    padding: 3rem 10rem 4rem 10rem;
    text-align: justify;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1200px) {
    #mainkey {
        padding: 2rem 3rem 3rem 3rem;
    }
}

@media (max-width: 768px) {
    #mainkey {
        padding: 1.5rem 2rem 2rem 2rem;
    }
} */
/*
.csjXEk .service-item {
    width: 31%;
    margin-bottom: 2.5rem;
    margin-right: 0.25rem;
    border-top: 2px solid;
} */

.sec-3h {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.hero-section {
    position: relative;
    z-index: 0;
    padding-bottom: 2rem;
}

/* START for FAQ section */
.faq-section .accordion-button{
    font-size: 18px !important;
    padding-left: 0;
    padding-right: 0;
}

.faq-section .accordion-button:not(.collapsed) {
    border-bottom: 2px solid #ffbc38; /* Bootstrap yellow */
    box-shadow: none; /* optional: remove default shadow */
    background: none;
    color: #212529;
}

.faq-section .accordion-item{
    border: none;
    border-bottom: 2px solid #dee2e6;
}

.faq-section .accordion-button:focus{
    box-shadow: none;
}
/* END for FAQ section */
