/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: white;
    color: #333;
    text-align: center;
    max-height: 100%;
}

a {
    color: green;
    text-decoration: none;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #4caf50;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #4caf50;
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

button {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    background-color: #4caf50;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #388e3c;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    margin-bottom: 3rem;
}

.content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.faq {
    max-width: 700px;
    margin: 0 auto 10%;
}

.question-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.question-toggle a {
    text-decoration: none;
}

.plus,
.minus {
    font-size: 20px;
}

.minus {
    display: none;
}

.question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.question-content p {
    margin-top: 0;
}

.open .plus {
    display: none;
}

.open .minus {
    display: inline;
}

.question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 20px;
}

.question-content p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

#faq {
    font-size: 1.2em;
}
