* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Rubik", sans-serif;
        }

        body {
           
            background: linear-gradient(135deg, #fffaf0 0%, #fff4cc 100%);
            color: #333;
            line-height: 1.6;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-title {
            font-size: 3rem;
            font-weight: 700;
            /* color: #F5C106; */
            color: #fdc800;
            margin-bottom: 20px;
            position: relative;
            margin-top: 100px;
        }

        .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            /* background: linear-gradient(90deg, #F5C106, #06a8f5); */
            border-radius: 2px;
        }

        .faq-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(245, 193, 6, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(245, 193, 6, 0.1);
            width: 100%;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(245, 193, 6, 0.15);
        }

        .faq-question {
            padding: 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(145deg, #ffffff 0%, #fff9ec 100%);
            border-bottom: 1px solid rgba(245, 193, 6, 0.1);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(145deg, #fffdf5 0%, #fff6db 100%);
        }

        .faq-question h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            flex: 1;
            padding-right: 20px;
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-question h3 {
            /* color: #F5C106; */
            color: #Fdc800;
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #Fdc800, #fdc800);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            background: linear-gradient(135deg, #fdc800, #fdc800);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 30px;
        }

        .faq-answer p {
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
            margin: 0;
        }

        .faq-answer ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .faq-answer li {
            color: #555;
            margin: 8px 0;
        }

        .faq-answer strong {
            color: #fdc800;
            font-weight: 600;
        }

        .contact-section {
            background: linear-gradient(0deg, #FDC800, #FFF4b8);
            color: white;
            text-align: center;
            padding: 50px 20px;
            border-radius: 20px;
            margin-top: 60px;
        }


        .contact-section > a:hover{
            color: #d19c00
        }

        .contact-section h3 {
            font-family: 'Rubik', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-section p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .contact-btn {
            display: inline-block;
            background: white;
            color: #fdc800;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .cust-mail-wrapper{
            display: flex;
            flex-direction: column;
        } 

        .contact-link{
            color: white;
            font-weight: 500;
            font-size: 20px;
        }

        @media (max-width: 767px){
            .contact-link{
                font-size: 16px;
            }

            /* .contact-section{
                max-width: 450px;
            } */
        }

        /* Specific for iphone SE */
        @media (max-width: 391px){
             .contact-link{
                font-size: 14px;
            }
        }
