* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #e1f5fe, #fff);
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
header {
    cursor: pointer;
    background-color: #0288d1;
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    display:fixed
}
.header_box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.child_1 {
    width: 100px;
    height: 90px;
    object-fit: cover;
}
.child_2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}
.faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.faq-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #01579b;
    text-align: center;
}
.faq {
    margin-bottom: 20px;
    background-color: #e1f5fe;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0277bd;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}
