/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


.faqs {
    width: 90%;
    max-width: 1200px;
    margin-top: 130px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

p,li {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: 20px;
    font-weight: 300;
    font-style: normal;
}

h4  {
  font-family: "Lora", serif;
  font-optical-sizing: 30px;
  font-weight: 700;
  font-style: normal;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    background-color: #00cd9c;
    color: white;
    cursor: pointer;
    font-size: 20px;
    font-family: "Balsamiq Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.tab-button:hover {
    background-color: #0056b3;
}

.content {
    display: none;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.5);
}

.content.active {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .tab-button {
        margin-bottom: 10px;
        width: 100%;
    }
}