* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}


.faq-section {
max-width: 1350px;
padding: 40px;
background-color: rgba(0, 0, 0, 0.6);
text-align: center;
border-radius: 10px;
background-image: url("../assets/images/layout.webp"); 
background-size: cover;
background-position: center;
margin: auto;
}

.faq-header {
margin-bottom: 30px;

}

.faq-title {
font-size: 3rem;
color: #ffffff;
margin-bottom: 10px;


}

.highlight {
color: #2c7ef3;
}

.search-bar {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
}

.search-bar input[type="text"] {
width: 100%;
max-width: 600px;
padding: 12px 20px;
border-radius: 25px;
border: none;
outline: none;
font-size: 1rem;
color: #000;
margin-left:20rem;
}

.search-bar .btn-faq {
position: relative;
right:16rem;
background: none;
border: none;
cursor: pointer;
}

.search-bar img {
width: 20px;
height: 20px;
}

.faq-categories {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 40px;

}

.category {
background-color: rgba(0, 0, 0, 0.7);
border-radius: 10px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #ffffff;
transition: background 0.3s;
}

.category:hover {
background-color: rgba(44, 126, 243, 0.9); 
}

.category img {
width: 40px;
height: 40px;
margin-bottom: 15px;
}

.category p {
font-size: 1.2rem;
font-weight: bold;
margin: 0;
}
