﻿  .faq-wrapper {
            padding: 80px 0;
        }

        .faq-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 50px;
            background: #e8f5ff;
            color: #0879d1;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .faq-title {
            color: #102a43;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .faq-subtitle {
            color: #718096;
            font-size: 16px;
            margin-bottom: 45px;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e5eaf0;
            border-radius: 16px !important;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
        }

        .faq-button {
            padding: 20px 22px;
            background: #fff;
            color: #172b4d;
            font-size: 16px;
            font-weight: 600;
            border: 0;
        }

        .faq-button:not(.collapsed) {
            color: #0879d1;
            background: #fff;
            box-shadow: none;
        }

        .faq-button:focus {
            box-shadow: none;
        }

        .faq-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 12px;
            background: #eaf5ff;
            color: #0879d1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 18px;
        }

        .faq-answer {
            padding: 0 70px 22px 79px;
            color: #68778d;
            line-height: 1.7;
            font-size: 15px;
        }

        @media (max-width: 767px) {

            .faq-wrapper {
                padding: 50px 15px;
            }

            .faq-title {
                font-size: 30px;
            }

            .faq-button {
                padding: 16px;
                font-size: 14px;
            }

            .faq-icon {
                width: 36px;
                height: 36px;
                min-width: 36px;
                margin-right: 10px;
            }

            .faq-answer {
                padding: 0 20px 20px 62px;
                font-size: 14px;
            }
        }