body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #ffffff;
    margin: 0;
    padding: 80px 0 20px;
    text-align: center;
    min-height: 100vh;
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

h1 {
    color: #ffffff;
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.button-container {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    background-color: #ffffff;
    color: #6a11cb;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    font-weight: bold;
}

.button:hover {
    background-color: #6a11cb;
    color: #ffffff;
    transform: translateY(-5px);
}

.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.top-nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: #2575fc;
}

#about, #contact, #faq {
    margin-top: 40px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff;
}

#contact a {
    color: #ffffff;
    text-decoration: underline;
}

#contact a:hover {
    color: #2575fc;
}