/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Montserrat:wght@300;400;700&display=swap');*/


@font-face{
    font-family: familiagibson;
    src: url(../fonts/Gibson/Gibson-SemiBold.ttf);
}

* {
	margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	/*font-family: 'Montserrat', sans-serif;*/
	
	
    width: 100%;
    display: flex;
   /* min-height: 20vh;*/


	
	flex-direction: column;
	min-height: 100vh;
  
	  overflow-x: hidden;
	 
	  margin: 0;
	  padding: 0;
	  display: flex;
	  align-items: center;
	  justify-content: center;
  
	  background-color: #f4f4f4;
	  font-family: 'Poppins', sans-serif;
}

.faq-section {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    margin-top: 50px;
    margin: 80px auto 0 auto;
    color: black;
}

.faq-title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    font-size: 18px;
    cursor: pointer;
    padding: 15px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
      color: black;
}

.faq-question .arrow i {
    transition: transform 0.3s ease;
}

.faq-question.active .arrow i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 15px;
    background-color: #fafafa;
    border-left: 3px solid #ccc;
}

.faq-answer p {
    margin: 10px 0;
}







/*RESPONSIVE*/



@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 10px;
    }

    .faq-answer {
        padding: 0 10px;
    }
}




   
    