body {
    font-family: 'Roboto Slab', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
a {
    color: #333;
    text-decoration: none;
    transition: color 200ms ease;
}
a:hover {
    color: #555;
}

.page-content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero {
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid #e0e0e0;
}
.hero h1 {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}
.hero p {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}
.hero .cta-button {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #fff;
    background-color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 200ms ease;
}
.hero .cta-button:hover {
    background-color: #555;
}

.faq-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #fff;
}
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-cards .card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: cardFadeIn 500ms ease-in-out;
    transition: transform 200ms ease, box-shadow 200ms ease;
    cursor: pointer;
}
.faq-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.faq-cards .card h2 {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}
.faq-cards .card p {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.5;
}