body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.coming-soon-container {
    text-align: center;
    max-width: 600px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icon {
    display: inline-block;
    background-color: #333;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #555;
}

.social-icon i {
    pointer-events: none;
}
