  /* Load the Bold weight */
  @font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Load the Regular weight */
@font-face {
    font-family: 'RocknRoll';
    src: url('./fonts/RocknRollOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Load the Regular weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Load the Medium weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Load the SemiBold weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Load the Light weight */
@font-face {
    font-family: 'SairaSemi';
    src: url('./fonts/SairaSemiCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

* {
    font-family: 'SairaSemi', sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: #f7f9fc;
    padding: 0;
}
.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px;
}
a{
    text-decoration: none;
    color: #129e15;
}

.p2n{
    font-size: 15px;
    padding: 15px;
}
.links{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 16px;
    color: #3C0867;
    background-color: #fbfbfb;
    padding: 8px 30px;
    border-radius: 25px;
    border: 1px solid rgb(232, 232, 232);
}
.links img{
    width: 100%;
    height: auto;
    max-width: 20px;
}
.sepa{
    margin-top: 40px;
    width: 100%;
    height: 1px;
    background-color: #dadada;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.header {
    background: #2D094F;
    background: linear-gradient(90deg, #2d094f 0%, #8941c7 50%, #2d094f 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    text-align: center;
}

.header h1 {
    color: #fff;
    line-height: 1;
    font-family: 'SairaSemi', sans-serif;
}
.header p{
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.faq-section {
    padding: 30px;
    border-radius: 25px;
    max-width: 1000px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    color: #444;
    /* Softer color for header text */
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    /* Soft border */
    padding-bottom: 10px;
}

.faq-question {
    background: none;
    width: 100%;
    border: none;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    outline: none;
    color: #555;
    /* Softer color for question text */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    color: #781bd0;
    /* Softer hover color */
}

.faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0px 15px 0px 15px;
    transition: height 0.4s ease, padding 0.4s ease;
    text-align: left;
}

.faq-answer p {
    margin: 0;
    color: #444;
    /* Softer color for answer text */
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.2em;
    transition: transform 0.4s ease;
    display: inline-block;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 0px 15px 10px 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon:before {
    content: '\2212';
}

.faq-item:not(.active) .faq-icon:before {
    content: '+';
}

/* Active color styles */
.faq-item.active .faq-question {
    color: #781bd0;
    /* Softer active color for question */
}

.faq-item.active .faq-answer p {
    color: #781bd0;
    /* Softer active color for answer */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 18px;
    }

    .faq-section {
        padding: 30px 10px;
        border-radius: 15px;
    }

    .faq-question {
        font-size: 13px;
        padding: 5px 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-item.active .faq-answer {
        height: auto;
        padding: 0px 15px 10px 15px;
    }
    .header{
        padding: 10px 0px;
    }
    .header h1{
        font-size:20px;
    }
    .footer{
        flex-wrap: wrap;
        gap: 10px;
    }
    .links{
        padding: 4px 20px;
        font-size: 13px;
    }
    .links img{
        max-width: 16px;
    }
}