/* Global styles and body */
body {
    font-family: 'Aptos', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
}

/* Header */
.header {
    font-family: 'Cabin', sans-serif;
    display: flex;
    background-color: #30363B;
    color: #fffc04;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    font-size: 2em;
    width: 100%;
    box-sizing: border-box;
}

.left-container, .middle-container {
    display: flex;
    align-items: center;
}

img.logo {
    max-width: 100%;
    height: auto;
    margin-right: 10px;
}

/* FAQ Styles */
.faq {
    font-family: 'Cabin', sans-serif;
    max-width: 1000px;
    margin: 40px auto;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq details {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px; 
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    margin: -10px -10px 10px;
    padding: 10px;
}

.faq summary:hover {
    color: #30363b; 
}

.faq p {
    font-family: 'Aptos', sans-serif;
    padding: 10px 0;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 2px 0;
    background-color: #30363b;
    color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}