/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*header {*/
/*    background: #3498db;*/
/*    color: #fff;*/
/*    padding: 1rem 0;*/
/*}*/

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    color: #fff;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}


.hero {
    padding: 2rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.content {
    padding: 2rem 0;
    flex: 1;
}

.content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq details {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq details:hover {
    transform: translateY(-5px);
}

.faq summary {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 20px; /* Space for the indicator */
}

.faq summary::after {
    content: '\25BC'; /* Downward arrow */
    position: absolute;
    right: 0;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: rotate(180deg); /* Rotate arrow when expanded */
}

/*footer {*/
/*    background: #333;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    padding: 1rem 0;*/
/*    width: 100%;*/
/*    position: sticky;*/
/*    bottom: 0;*/
/*}*/

/*footer a {*/
/*    color: #3498db;*/
/*    text-decoration: none;*/
/*}*/

/*footer a:hover {*/
/*    text-decoration: underline;*/
/*}*/