
p{
    text-align: justify;
}
.choose-bg {
    background-color: rgba(3,44,69,0.9) !important;
}
.about-text {
    color: #222; /* Darker text on light background */
}
.counter-box .icon img {
    width: 70px !important;
    display: revert !important;
}
.choose-item-icon img {
    width: 55px;
    display: revert;
}

.feature-icon img {
    width: 55px;
    display: revert;
}


    .journey-services-section {
        width: 100%;
        background: #ffffff;
        padding: 40px 0;
        overflow: hidden;
    }

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

    .journey-services-header {
        max-width: 820px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .journey-services-label {
        display: inline-block;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .journey-services-title {
        margin: 0 0 18px;
        font-size: 38px;
        line-height: 1.25;
        font-weight: 700;
    }

    .journey-services-line {
        width: 55px;
        height: 3px;
        margin: 0 auto 20px;
    }

    .journey-services-intro {
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        color: #666666;
    }

    .journey-services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .journey-service-box {
        position: relative;
        height: 100%;
        padding: 32px 28px;
        background: #ffffff;
        border: 1px solid #e6e6e6;
        border-radius: 14px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .journey-service-box:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
    }

    .journey-service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #f7f7f7;
    }

    .journey-service-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .journey-service-heading {
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 1.4;
        font-weight: 600;
    }

    .journey-service-text {
        margin: 0;
        font-size: 15px;
        line-height: 1.8;
        color: #666666;
    }

    @media (max-width: 991px) {
        .journey-services-section {
            padding: 70px 0;
        }

        .journey-services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .journey-services-title {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .journey-services-section {
            padding: 55px 0;
        }

        .journey-services-container {
            padding: 0 16px;
        }

        .journey-services-header {
            margin-bottom: 35px;
        }

        .journey-services-title {
            font-size: 29px;
        }

        .journey-services-intro {
            font-size: 15px;
            line-height: 1.7;
        }

        .journey-services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .journey-service-box {
            padding: 27px 23px;
        }
    }

    @media (max-width: 480px) {
        .journey-services-title {
            font-size: 26px;
        }

        .journey-service-icon {
            width: 58px;
            height: 58px;
        }

        .journey-service-icon img {
            width: 36px;
            height: 36px;
        }

        .journey-service-heading {
            font-size: 19px;
        }

        .journey-service-text {
            font-size: 14px;
        }
    }


    .travel-planning-section {
        width: 100%;
        background: #032D45;
        padding: 40px 0;
        overflow: hidden;
    }

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

    .travel-planning-layout {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 60px;
        align-items: center;
    }

    .travel-planning-image {
        width: 100%;
        min-height: 430px;
        border-radius: 16px;
        overflow: hidden;
    }

    .travel-planning-image img {
        width: 100%;
        height: 100%;
        min-height: 430px;
        display: block;
        object-fit: cover;
    }

    .travel-planning-content {
        width: 100%;
    }

    .travel-planning-label {
        display: inline-block;
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .travel-planning-title {
        margin: 0 0 20px;
        color: #ffffff;
        font-size: 38px;
        line-height: 1.3;
        font-weight: 700;
    }

    .travel-planning-description {
        margin: 0 0 28px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 16px;
        line-height: 1.8;
    }

    .travel-planning-points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 25px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .travel-planning-point {
        position: relative;
        padding-left: 27px;
        color: rgba(255, 255, 255, 0.88);
        font-size: 15px;
        line-height: 1.7;
    }

    .travel-planning-point::before {
        content: "";
        position: absolute;
        left: 0;
        top: 9px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ffffff;
    }

    @media (max-width: 991px) {
        .travel-planning-section {
            padding: 70px 0;
        }

        .travel-planning-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .travel-planning-image {
            min-height: 380px;
        }

        .travel-planning-image img {
            min-height: 380px;
        }

        .travel-planning-title {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .travel-planning-section {
            padding: 55px 0;
        }

        .travel-planning-container {
            padding: 0 16px;
        }

        .travel-planning-layout {
            gap: 30px;
        }

        .travel-planning-image {
            min-height: 300px;
            border-radius: 12px;
        }

        .travel-planning-image img {
            min-height: 300px;
        }

        .travel-planning-title {
            font-size: 29px;
        }

        .travel-planning-description {
            font-size: 15px;
            line-height: 1.7;
        }

        .travel-planning-points {
            grid-template-columns: 1fr;
            gap: 14px;
        }
    }

    @media (max-width: 480px) {
        .travel-planning-title {
            font-size: 26px;
        }

        .travel-planning-image {
            min-height: 260px;
        }

        .travel-planning-image img {
            min-height: 260px;
        }
    }



    .traveller-choice-section {
        width: 100%;
        background: #ffffff;
        padding: 40px 0;
        overflow: hidden;
    }

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

    .traveller-choice-heading {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .traveller-choice-label {
        display: inline-block;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .traveller-choice-title {
        margin: 0 0 18px;
        font-size: 38px;
        line-height: 1.3;
        font-weight: 700;
        color: #222222;
    }

    .traveller-choice-divider {
        width: 55px;
        height: 3px;
        margin: 0 auto 20px;
        background: #032D45;
    }

    .traveller-choice-intro {
        margin: 0;
        color: #666666;
        font-size: 16px;
        line-height: 1.8;
    }

    .traveller-choice-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .traveller-choice-card {
        height: 100%;
        padding: 32px 28px;
        background: #ffffff;
        border: 1px solid #e7e7e7;
        border-radius: 14px;
        transition: all 0.3s ease;
    }

    .traveller-choice-card:hover {
        transform: translateY(-6px);
        border-color: #032D45;
        box-shadow: 0 12px 30px rgba(3, 45, 69, 0.10);
    }

    .traveller-choice-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        margin-bottom: 22px;
        border-radius: 50%;
        background: #032D45;
        color: #ffffff;
        font-size: 17px;
        font-weight: 600;
    }

    .traveller-choice-card-title {
        margin: 0 0 12px;
        color: #222222;
        font-size: 20px;
        line-height: 1.4;
        font-weight: 600;
    }

    .traveller-choice-card-text {
        margin: 0;
        color: #666666;
        font-size: 15px;
        line-height: 1.8;
    }

    @media (max-width: 991px) {
        .traveller-choice-section {
            padding: 70px 0;
        }

        .traveller-choice-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .traveller-choice-title {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .traveller-choice-section {
            padding: 55px 0;
        }

        .traveller-choice-container {
            padding: 0 16px;
        }

        .traveller-choice-heading {
            margin-bottom: 35px;
        }

        .traveller-choice-title {
            font-size: 29px;
        }

        .traveller-choice-intro {
            font-size: 15px;
            line-height: 1.7;
        }

        .traveller-choice-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .traveller-choice-card {
            padding: 27px 23px;
        }
    }

    @media (max-width: 480px) {
        .traveller-choice-title {
            font-size: 26px;
        }

        .traveller-choice-card-title {
            font-size: 19px;
        }

        .traveller-choice-card-text {
            font-size: 14px;
        }
    }


    .travel-purpose-section {
        width: 100%;
        background: #032D45;
        padding: 40px 0;
        overflow: hidden;
    }

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

    .travel-purpose-heading {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .travel-purpose-label {
        display: inline-block;
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .travel-purpose-title {
        margin: 0 0 18px;
        color: #ffffff;
        font-size: 38px;
        line-height: 1.3;
        font-weight: 700;
    }

    .travel-purpose-divider {
        width: 55px;
        height: 3px;
        margin: 0 auto 20px;
        background: #ffffff;
    }

    .travel-purpose-intro {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 16px;
        line-height: 1.8;
    }

    .travel-purpose-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .travel-purpose-card {
        height: 100%;
        padding: 35px 32px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 14px;
        transition: all 0.3s ease;
    }

    .travel-purpose-card:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-5px);
    }

    .travel-purpose-card-label {
        display: block;
        margin-bottom: 14px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .travel-purpose-card-title {
        margin: 0 0 15px;
        color: #ffffff;
        font-size: 25px;
        line-height: 1.4;
        font-weight: 600;
    }

    .travel-purpose-card-text {
        margin: 0;
        color: rgba(255, 255, 255, 0.80);
        font-size: 15px;
        line-height: 1.8;
    }

    @media (max-width: 991px) {
        .travel-purpose-section {
            padding: 70px 0;
        }

        .travel-purpose-title {
            font-size: 34px;
        }

        .travel-purpose-grid {
            gap: 22px;
        }
    }

    @media (max-width: 767px) {
        .travel-purpose-section {
            padding: 55px 0;
        }

        .travel-purpose-container {
            padding: 0 16px;
        }

        .travel-purpose-heading {
            margin-bottom: 35px;
        }

        .travel-purpose-title {
            font-size: 29px;
        }

        .travel-purpose-intro {
            font-size: 15px;
            line-height: 1.7;
        }

        .travel-purpose-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .travel-purpose-card {
            padding: 28px 23px;
        }

        .travel-purpose-card-title {
            font-size: 22px;
        }
    }

    @media (max-width: 480px) {
        .travel-purpose-title {
            font-size: 26px;
        }

        .travel-purpose-card-title {
            font-size: 20px;
        }

        .travel-purpose-card-text {
            font-size: 14px;
        }
    }


    .travel-commitment-section {
        width: 100%;
        background: #fafbfb;
        padding: 40px 0;
        overflow: hidden;
    }

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

    .travel-commitment-heading {
        max-width: 800px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .travel-commitment-label {
        display: inline-block;
        margin-bottom: 12px;
        color: #032D45;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .travel-commitment-title {
        margin: 0 0 18px;
        color: #032D45;
        font-size: 38px;
        line-height: 1.3;
        font-weight: 700;
    }

    .travel-commitment-divider {
        width: 55px;
        height: 3px;
        margin: 0 auto 20px;
        background: #032D45;
    }

    .travel-commitment-intro {
        margin: 0;
        color: #032D45;
        font-size: 16px;
        line-height: 1.8;
    }

    .travel-commitment-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .travel-commitment-card {
        height: 100%;
        padding: 32px 28px;
        background: #032D45;
        border-radius: 14px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .travel-commitment-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    }

    .travel-commitment-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #fff;
    }

    .travel-commitment-icon span {
        color: #032D45;
        font-size: 21px;
        font-weight: 700;
    }

    .travel-commitment-card-title {
        margin: 0 0 12px;
        color: #fff;
        font-size: 20px;
        line-height: 1.4;
        font-weight: 600;
    }

    .travel-commitment-card-text {
        margin: 0;
        color: #fff;
        font-size: 15px;
        line-height: 1.8;
    }

    @media (max-width: 991px) {
        .travel-commitment-section {
            padding: 70px 0;
        }

        .travel-commitment-title {
            font-size: 34px;
        }

        .travel-commitment-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        .travel-commitment-section {
            padding: 55px 0;
        }

        .travel-commitment-container {
            padding: 0 16px;
        }

        .travel-commitment-heading {
            margin-bottom: 35px;
        }

        .travel-commitment-title {
            font-size: 29px;
        }

        .travel-commitment-intro {
            font-size: 15px;
            line-height: 1.7;
        }

        .travel-commitment-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .travel-commitment-card {
            padding: 27px 23px;
        }
    }

    @media (max-width: 480px) {
        .travel-commitment-title {
            font-size: 26px;
        }

        .travel-commitment-card-title {
            font-size: 19px;
        }

        .travel-commitment-card-text {
            font-size: 14px;
        }
    }

   
    .travel-experience-section {
        width: 100%;
        background: #032D45;
        padding: 40px 0;
        overflow: hidden;
    }

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

    .travel-experience-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 65px;
        align-items: center;
    }

    .travel-experience-content {
        width: 100%;
    }

    .travel-experience-label {
        display: inline-block;
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .travel-experience-title {
        margin: 0 0 20px;
        color: #ffffff;
        font-size: 38px;
        line-height: 1.3;
        font-weight: 700;
    }

    .travel-experience-text {
        margin: 0 0 18px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 16px;
        line-height: 1.8;
    }

    .travel-experience-text:last-child {
        margin-bottom: 0;
    }

    .travel-experience-highlights {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .travel-experience-item {
        padding: 25px 22px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
    }

    .travel-experience-number {
        display: block;
        margin-bottom: 10px;
        color: #ffffff;
        font-size: 25px;
        font-weight: 700;
    }

    .travel-experience-item-title {
        margin: 0 0 8px;
        color: #ffffff;
        font-size: 18px;
        line-height: 1.4;
        font-weight: 600;
    }

    .travel-experience-item-text {
        margin: 0;
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        line-height: 1.7;
    }

    @media (max-width: 991px) {
        .travel-experience-section {
            padding: 70px 0;
        }

        .travel-experience-wrap {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .travel-experience-title {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .travel-experience-section {
            padding: 55px 0;
        }

        .travel-experience-container {
            padding: 0 16px;
        }

        .travel-experience-title {
            font-size: 29px;
        }

        .travel-experience-text {
            font-size: 15px;
            line-height: 1.7;
        }

        .travel-experience-highlights {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .travel-experience-item {
            padding: 22px 20px;
        }
    }

    @media (max-width: 480px) {
        .travel-experience-title {
            font-size: 26px;
        }

        .travel-experience-item-title {
            font-size: 17px;
        }
    }


    .about-action-section {
        width: 100%;
        background: #ffffff;
        padding: 75px 0;
        overflow: hidden;
    }

    .about-action-container {
        width: 100%;
        max-width: 1150px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .about-action-box {
        position: relative;
        padding: 55px 60px;
        background: #032D45;
        border-radius: 16px;
        text-align: center;
        overflow: hidden;
    }

    .about-action-label {
        display: inline-block;
        margin-bottom: 12px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .about-action-title {
        margin: 0 auto 18px;
        max-width: 750px;
        color: #ffffff;
        font-size: 36px;
        line-height: 1.3;
        font-weight: 700;
    }

    .about-action-text {
        max-width: 720px;
        margin: 0 auto 30px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 16px;
        line-height: 1.8;
    }

    .about-action-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .about-action-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 170px;
        padding: 13px 25px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .about-action-primary {
        background: #ffffff;
        color: #032D45;
    }

    .about-action-primary:hover {
        background: #f1f1f1;
        color: #032D45;
    }

    .about-action-secondary {
        border: 1px solid rgba(255, 255, 255, 0.7);
        color: #ffffff;
        background: transparent;
    }

    .about-action-secondary:hover {
        background: #ffffff;
        color: #032D45;
    }

    @media (max-width: 767px) {
        .about-action-section {
            padding: 55px 0;
        }

        .about-action-container {
            padding: 0 16px;
        }

        .about-action-box {
            padding: 40px 22px;
            border-radius: 12px;
        }

        .about-action-title {
            font-size: 29px;
        }

        .about-action-text {
            font-size: 15px;
            line-height: 1.7;
        }

        .about-action-buttons {
            flex-direction: column;
        }

        .about-action-button {
            width: 100%;
            max-width: 260px;
        }
    }

    @media (max-width: 480px) {
        .about-action-title {
            font-size: 26px;
        }

        .about-action-box {
            padding: 35px 18px;
        }
    }




    .faq-answer {
    cursor: pointer;
}
    .faq-section {
        background-color: #032D45;
        padding: 70px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    /* -------- H2 HEADING -------- */
    .faq-container h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 40px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
        border-left: 6px solid #f39c12;
        padding-left: 20px;
    }

    /* -------- FAQ ITEM -------- */
    .faq-item {
        background: rgba(255, 255, 255, 0.04);
        border-radius: 10px;
        margin-bottom: 14px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        overflow: hidden;
        transition: border-color 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(243, 156, 18, 0.3);
    }

    /* -------- QUESTION (clickable) -------- */
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        cursor: pointer;
        user-select: none;
        transition: background 0.25s ease;
    }

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        line-height: 1.4;
        padding-right: 20px;
        flex: 1;
    }

    /* -------- TOGGLE ICON (+ / –) -------- */
    .faq-toggle {
        flex: 0 0 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(243, 156, 18, 0.15);
        border: 2px solid rgba(243, 156, 18, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #f39c12;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1;
    }

    .faq-item.active .faq-toggle {
        background: rgba(243, 156, 18, 0.25);
        border-color: #f39c12;
        transform: rotate(45deg);
    }

    /* -------- ANSWER (collapsible) -------- */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.3s ease,
                    opacity 0.3s ease;
        opacity: 0;
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px; /* enough for all answers */
        opacity: 1;
        padding: 0 24px 22px 24px;
    }

    .faq-answer p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #e8f0f5;
        text-align: justify;
        margin: 0;
    }

    /* -------- RESPONSIVE -------- */
    @media screen and (max-width: 768px) {
        .faq-section {
            padding: 50px 16px;
        }

        .faq-container h2 {
            font-size: 1.9rem;
            padding-left: 16px;
            border-left-width: 5px;
            margin-bottom: 30px;
        }

        .faq-question {
            padding: 16px 18px;
        }

        .faq-question h3 {
            font-size: 1.0rem;
            padding-right: 14px;
        }

        .faq-toggle {
            flex: 0 0 26px;
            height: 26px;
            font-size: 1.0rem;
        }

        .faq-answer p {
            font-size: 0.98rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding: 0 18px 18px 18px;
        }
    }

    @media screen and (max-width: 480px) {
        .faq-section {
            padding: 36px 12px;
        }

        .faq-container h2 {
            font-size: 1.6rem;
            padding-left: 14px;
            border-left-width: 4px;
            margin-bottom: 24px;
        }

        .faq-question {
            padding: 14px 14px;
        }

        .faq-question h3 {
            font-size: 0.95rem;
            padding-right: 10px;
        }

        .faq-toggle {
            flex: 0 0 24px;
            height: 24px;
            font-size: 0.9rem;
        }

        .faq-answer p {
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 0 14px 16px 14px;
        }
    }

