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

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.coming-soon-container {
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3rem;
    color: #34A853;
}

h2 {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #333;
}

p {
    color: #555;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #FF7A00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.btn:hover {
    background-color: #e66a00;
}

footer {
    margin-top: 40px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: #34A853;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

footer p {
    color: #555;
}
