body {
            background: #eceff3;
            font-family: 'Poppins', sans-serif;
        }

        .faq-section {
            padding: 60px 0;
        }

        .white-bg {
            background: #fff;
            padding: 60px;
        }

        .faq-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1;
            color: #000;
        }

        .faq-item {
            border: 1px solid #e2e2e2;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            background: #fff;
        }

        .faq-btn {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding:10px 25px;
            font-size:18px;
            font-weight: 600;
            color: #111;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-btn:focus {
            outline: none;
        }

        .faq-btn span {
            font-size: 34px;
            font-weight: 300;
        }

        .faq-body {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.8;
        }

        .contact-card {
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            padding: 50px 35px;
            text-align: center;
            height: 100%;
        }

        .icon-box {
            width: 90px;
            height: 90px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            margin-bottom: 25px;
            color: #ff6c47;
        }

        .contact-card h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .contact-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-btn {
            background: #1a2a4a;
            color: #fff;
            width: 100%;
            padding:10px;
            border-radius:10px;
            font-weight: 600;
        }

        .contact-btn:hover {
            background: #ff6c47;
            color: #fff;
        }

        @media(max-width:991px) {

            .container {
                padding: 40px 25px;
            }

            .faq-title {
                font-size: 48px;
            }

            .contact-card {
                margin-top: 30px;
            }
        }

        @media(max-width:576px) {

            .faq-title {
                font-size: 36px;
            }

            .faq-btn {
                font-size: 18px;
                padding: 18px;
            }

            .contact-card h3 {
                font-size: 24px;
            }
        }