.highlight-box {
    background-color: #f8ba00;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    color: #000;
    font-size: 1.2rem;
}

* {
    font-family: "Open Sans", sans-serif !important;
}

.hero-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4056b3;
    line-height: 1.2;
}

.hero-subtext {
    color: #555;
    font-size: 1.1rem;
    margin-top: 15px;
}

.start-btn {
    background-color: #4056b3;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .start-btn:hover {
        background-color: #324297;
        color: white;
    }

    .start-btn i {
        margin-right: 8px;
        font-size: 1.2rem;
    }

/* Banner Section Styling */
.banner-section {
    padding-top: 3rem;
    /*padding-bottom: 3rem;*/
    background-color: #f3f5ff !important;
    overflow: hidden;
}

/* Styling for the student image with curved border */
.student-image-wrapper {
    position: relative;
    width: 85%;
    margin: 0 auto;
}

    .student-image-wrapper:before {
        content: '';
        position: absolute;
        top: -5%;
        left: -5%;
        right: -5%;
        bottom: -5%;
        /* background-color: #4056b3; */
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        z-index: 0;
    }

    .student-image-wrapper img {
        position: relative;
        z-index: 1;
        max-height: 400px;
    }

/* Navbar styling */
.navbar {
    background-color: #4056b3 !important;
}

.navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 500;
}

.btn-light {
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-heading {
        font-size: 2rem;
    }

    .student-image-wrapper {
        margin-top: 2rem;
    }
}

/* Problems Section Styling - Arc Design */
.problems-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.problem-item {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Arc container */
.problem-arc {
    position: relative;
    width: 235px;
    height: 80px;
    overflow: hidden;
    margin-bottom: 15px;
}

    /* Create the blue arc */
    .problem-arc:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 232px;
        height: 213px;
        border: 12px solid #4056b3;
        border-radius: 50%;
    }

/* Inner white circle with icon */
.problem-circle {
    position: absolute;
    top: 39px;
    left: 50%;
    transform: translateX(-50%);
    width: 169px;
    height: 169px;
    background-color: #9ec5fe17;
    border-radius: 50%;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.problem-icon {
    width: 50px;
    height: 50px;
    color: #4056b3;
}

.pt-15 {
    padding-top: 23px;
}

.section-title {
    color: #3651bf;
    font-weight: 700;
}

.problem-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4056b3;
    margin-top: 7px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .problem-arc {
        width: 140px;
        height: 70px;
    }

        .problem-arc:before {
            width: 140px;
            height: 140px;
            border-width: 10px;
            clip: rect(0px, 140px, 70px, 0px);
        }

    .problem-circle {
        width: 90px;
        height: 90px;
    }

    .problem-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .problem-arc {
        width: 120px;
        height: 60px;
    }

    .highlight-box {
        font-size: 0.9rem !important;
    }

    .banner-section {
        text-align: center;
    }

    .problem-arc:before {
        width: 120px;
        height: 120px;
        border-width: 8px;
        clip: rect(0px, 120px, 60px, 0px);
    }

    .faq-section h2, .faq-section p.faq-subtitle {
        text-align: center;
    }

    .problem-circle {
        width: 80px;
        height: 80px;
        top: 20px !important;
    }

    .problem-icon {
        width: 35px;
        height: 35px;
    }

    .problem-title {
        font-size: 1rem;
        margin-top: 21px;
    }
}

/* Did You Know Section */
.did-you-know-section {
    background-color: #ffffff;
}

.student-surprised {
    /* max-height: 350px; */
}

.fact-box {
    border: 2px solid #4056b3;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    background-color: #f3f5ff;
}

.did-you-know-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4056b3;
    color: white;
    padding: 5px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.fact-text {
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #4056b3;
}

.fact-highlight {
    font-weight: 700;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .fact-text {
        font-size: 1.1rem;
    }

    .fact-highlight {
        font-size: 1.3rem;
    }
}

/* Don't Repeat Mistakes Section */
.dont-repeat-section {
    background-color: #f3f5ff;
}

.mistakes-heading {
    font-size: 2.3rem;
    font-weight: 700;
    color: #4056b3;
}

.mistakes-subheading {
    font-size: 1.3rem;
    color: #4056b3;
}

@media (max-width: 768px) {
    .mistakes-heading {
        font-size: 2rem;
    }

    .mistakes-subheading {
        font-size: 1.1rem;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #ffffff;
}

.pricing-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .pricing-card.featured {
        border-color: #4056b3;
        background-color: #4056b3;
        color: white;
    }

.bestseller-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #4056b3;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
}

.featured .package-name {
    color: white;
}

.package-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.featured .package-subtitle {
    color: #e0e0e0;
}

.pricing-card hr {
    margin: 15px 0;
    opacity: 0.2;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4056b3;
    text-align: center;
}

.featured .price {
    color: white;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

    .feature-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }

    .feature-list i {
        color: #4056b3;
        position: absolute;
        left: 0;
        top: 4px;
    }

.featured .feature-list i {
    color: white;
}

.featured .feature-list li {
    color: white;
}

.pricing-btn {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #4056b3;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured .pricing-btn {
    background-color: white;
    color: #4056b3;
}

.pricing-btn:hover {
    background-color: #324297;
}

.featured .pricing-btn:hover {
    background-color: #f1f1f1;
    color: #324297;
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* What You Get Section - Updated */
.what-you-get-section {
    background-color: #f3f5ff;
    padding: 60px 0;
}

.what-you-get-title {
    font-size: 2.2rem;
    font-weight: 700;
   
    color: #4056b3;
    margin-bottom: 5px;
}

.feature-subtitle {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}

    .feature-checklist li {
        margin-bottom: 12px;
        padding-left: 35px;
        position: relative;
        font-weight: 500;
        color: #333;
        font-size: 1rem;
    }

.check-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .check-icon::after {
        content: "";
        display: block;
        width: 10px;
        height: 6px;
        border-left: 2px solid white;
        border-bottom: 2px solid white;
        transform: rotate(-45deg);
        margin-top: -2px;
    }

.student-image-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .student-image-container img {
        max-width: 94%;
        /* max-height: 380px; */
        object-fit: contain;
        border-radius: 15px;
    }

.get-started-btn {
    background-color: #4056b3;
    border: none;
    color: white;
    padding: 12px 35px;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

    .get-started-btn:hover {
        background-color: #324297;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* Remove old styles that conflict */
.happy-student-image {
    max-width: 100%;
}

@media (max-width: 991px) {
    .student-image-container {
        margin-top: 30px;
        padding: 15px;
    }

        .student-image-container img {
            max-height: 300px;
        }
}

/* Who This is For Section - Updated */
.who-for-section {
    background-color: #f5f9fc;
    padding: 70px 0;
    overflow: hidden;
}

.diagonal-layout {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0;
}

.student-image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background-color: #fff;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

    .student-image img {
        width: 140%;
        height: 140%;
        object-fit: cover;
        transform: rotate(-45deg) scale(1);
        position: absolute;
        top: -20%;
        left: -20%;
    }

.top-img {
    margin-bottom: -30px;
}

.bottom-img {
    margin-top: -30px;
}

.info-text-left,
.info-text-right {
    display: flex;
    align-items: center;
    z-index: 1;
}

.info-text-left {
    justify-content: flex-end;
}

.info-text-right {
    justify-content: flex-start;
}

.info-box {
    background-color: #4056b3;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 300px;
}

/* Quote styling */
.quote-container {
    margin-top: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quote-box {
    border: 2px solid #4056b3;
    border-radius: 15px;
    padding: 30px 50px;
    position: relative;
    margin: 0 20px;
}

.quote-text {
    text-align: center;
    color: #4056b3;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.quote-mark {
    color: #4056b3;
    font-size: 60px;
    font-family: Georgia, serif;
    position: absolute;
    line-height: 1;
}

.left-quote {
    top: 10px;
    left: 15px;
}

.right-quote {
    bottom: -15px;
    right: 15px;
}
.faq-item:last-child {
    border-bottom: 0 !important;
}
.text-de-rm:focus-visible{
    border:0;
}
@media (max-width: 767px) {
    .diagonal-layout {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .what-you-get-title, .feature-subtitle {
        text-align: center;
    }
    .nav-item {
        border-bottom: 1px solid #ffffff4a;
        text-align: center;
    }
    .faq-section {
        padding-bottom: 0px !important;
    }
    .info-text-left, .info-text-right {
        justify-content: center;
        margin: 20px 0;
    }
    #mainNavbar .ms-lg-3 {
        text-align: center;
        padding-top:10px;
    }

    .info-box {
        max-width: 100%;
    }

    .student-image {
        width: 150px;
        height: 150px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .top-img, .bottom-img {
        margin: 0 auto;
    }

    .quote-text {
        font-size: 18px;
    }

    .quote-mark {
        font-size: 40px;
    }

    .left-quote {
        top: 5px;
        left: 10px;
    }

    .right-quote {
        bottom: -10px;
        right: 10px;
    }
}

/* Your Journey Section */
.journey-section {
    background-color: #f5f9fc;
    padding: 70px 0;
    overflow: hidden;
}

.journey-flow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.student-left, .student-right {
    width: 15%;
    z-index: 2;
}

    .student-left img, .student-right img {
        max-width: 100%;
        border-radius: 10px;
    }

.journey-flow {
    position: relative;
    width: 70%;
    padding: 40px 0;
}

.journey-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-1 {
    top: 30%;
    left: 0;
}

.step-2 {
    top: 10%;
    left: 20%;
}

.step-3 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.step-4 {
    top: 50%;
    right: 30%;
}

.step-5 {
    top: 30%;
    right: 0;
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.blue-step {
    background-color: #4056b3;
}

.red-step {
    background-color: #e53935;
}

.yellow-step {
    background-color: #ffc107;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.document-icon {
    background-color: #e3f2fd;
    color: #4056b3;
}

.plane-icon {
    background-color: #e3f2fd;
    color: #4056b3;
}

.job-icon {
    background-color: #e3f2fd;
    color: #4056b3;
}

.interview-icon {
    background-color: #e3f2fd;
    color: #4056b3;
}

.success-icon {
    background-color: #e3f2fd;
    color: #4056b3;
}

.step-text {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1.3;
}

.help-text {
    font-size: 11px;
    color: #4056b3;
    margin-top: 2px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, #4056b3 2px, transparent 3px);
    background-size: 15px 15px;
    background-position: center center;
    background-repeat: repeat;
    z-index: -1;
    opacity: 0.5;
    clip-path: polygon( 10% 40%, /* Starting point - left bottom */
    30% 20%, /* Up to second point */
    50% 15%, /* Up to third point at top */
    70% 30%, /* Down to fourth point */
    90% 40% /* End point - right bottom */
    );
}

@media (max-width: 991px) {
    .journey-flow-container {
        flex-direction: column;
    }

    .student-left, .student-right {
        width: 40%;
        margin-bottom: 30px;
    }

    .student-right {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .journey-flow {
        width: 100%;
        height: 350px;
    }

    .step-1 {
        top: auto;
        left: 5%;
        bottom: 70%;
    }

    .step-2 {
        top: auto;
        left: 25%;
        bottom: 40%;
    }

    .step-3 {
        top: auto;
        bottom: 20%;
        left: 50%;
    }

    .step-4 {
        top: auto;
        right: 25%;
        bottom: 40%;
    }

    .step-5 {
        top: auto;
        right: 5%;
        bottom: 70%;
    }

    .connection-lines {
        clip-path: polygon( 5% 30%, 25% 50%, 50% 70%, 75% 50%, 95% 30% );
    }
}

@media (max-width: 575px) {
    .journey-flow {
        height: 500px;
    }

    .step-1, .step-2, .step-3, .step-4, .step-5 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 20px;
        transform: none;
    }

    .journey-flow {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .connection-lines {
        display: none;
    }
}

/* Testimonial Section */
.testimonials-section {
    background-color: #f3f5ff;
    padding: 70px 0;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: -40px auto 0;
    position: absolute;
    z-index: 2;
}

    .client-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: #4056b3;
    text-align: right;
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 500;
}

.client-info {
    color: #4056b3;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
}

.visa-process-btn {
    background-color: #4056b3;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .visa-process-btn:hover {
        background-color: #324297;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        color: white;
    }

@media (max-width: 767px) {
    .client-image {
        width: 70px;
        height: 70px;
        margin-top: -35px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Global Community Section */
.community-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.community-text {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-item {
    margin-right: 40px;
    margin-bottom: 15px;
}

.stat-number {
    color: #4056b3;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.community-btn {
    background-color: #4056b3;
    color: white;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

    .community-btn:hover {
        background-color: #324297;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        color: white;
    }

.community-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .stat-item {
        margin-right: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Limited Time Offer Section */
.promo-section {
    padding: 50px 0;
    position: relative;
    background-color: #f5f9fc;
}

.promo-container {
    position: relative;
    background-color: #4056b3;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.limited-time-banner {
    position: absolute;
    top: 65px;
    left: 108px;
    background-color: #ffba00;
    color: #333;
    font-weight: 700;
    padding: 8px 40px;
    z-index: 999999999999;
    font-size: 0.9rem;
    /*transform: rotate(-35deg);*/
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.promo-content {
    padding: 30px 20px 20px;
}

.promo-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-subtitle {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.promo-btn {
    background-color: #ffba00;
    color: #333;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
}

    .promo-btn:hover {
        background-color: #ffc426;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        color: #333;
    }

.navbar-toggler-icon {
    filter: invert(100%); /* white */
}

.navbar-toggler {
    border-color: #fff !important;
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 1.6rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .topbar .col-md-7 {
        text-align: center;
    }

    .topbar .text-right {
        text-align: center;
    }

    .promo-subtitle {
        font-size: 1.1rem;
    }

    .pt-15 {
        padding-top: 13px !important;
    }

    .limited-time-banner {
        font-size: 0.8rem;
        padding: 5px 30px;
        left: 12px !important;
    }

    .price {
        text-align: center;
    }

    .pt-15 svg {
        width: 45px !important;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 70px 0;
}

.faq-subtitle {
    color: #444;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    padding: 15px 0;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-icon {
    margin-right: 10px;
    color: #4056b3;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 0 15px 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-image-container {
    /* background-color: #00BFA6; */
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .faq-image-container:before {
        content: "";
        background-image: url('../images/question-mark.png');
        background-size: 50px;
        background-repeat: no-repeat;
        width: 50px;
        height: 50px;
        position: absolute;
        top: 15%;
        left: 15%;
        opacity: 0.7;
    }

    .faq-image-container:after {
        content: "";
        background-image: url('../images/question-mark.png');
        background-size: 60px;
        background-repeat: no-repeat;
        width: 60px;
        height: 60px;
        position: absolute;
        top: 25%;
        right: 20%;
        opacity: 0.7;
    }

    .faq-image-container img {
        max-width: 80%;
        z-index: 1;
        position: relative;
    }

@media (max-width: 991px) {
    .faq-image-container {
        margin-top: 30px;
        min-height: 300px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #222;
    color: #fff;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #fff;
        }

.copyright-bar {
    background-color: #1a1a1a;
    color: #aaa;
    font-size: 0.9rem;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

    .social-links a:hover {
        opacity: 0.8;
    }

@media (max-width: 767px) {
    .copyright-bar .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .copyright-text {
        margin-bottom: 10px;
    }

    .social-links {
        margin-top: 10px;
    }

        .social-links a {
            margin: 0 8px;
        }
}
