/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    background: #513AB6;
    padding: 15px;
    text-align: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

/* Content Section */
.content {
    flex: 1;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.content h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 24px;
    margin-top: 20px;
}

.content h3 {
    font-size: 20px;
    margin-top: 15px;
}

.content p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 18px;
}

/* Footer */
footer {
    background: #f1f1f1;
    padding: 15px;
    text-align: center;
}

footer a {
    text-decoration: none;
    color: #513AB6;
    margin: 0 10px;
    font-size: 16px;
}