/* styles.css */

body {
    font-family: 'Arial', sans-serif; /* Consistent font for the page */
    background-color: #f4f4f9; /* Soft, neutral background color */
    color: #333; /* Dark grey text for readability */
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
}

#coming-soon {
    text-align: center; /* Centered text within the section */
    width: 90%; /* Responsive width */
    max-width: 600px; /* Max width for larger screens */
    padding: 20px;
    background-color: #ffffff; /* White background for visibility */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    border-radius: 8px; /* Soft rounded corners for a modern look */
}

h1 {
    color: #5a2d82; /* Theme color for headlines */
}

p {
    color: #666; /* Slightly lighter grey for informational text */
    line-height: 1.6; /* Enhanced line height for readability */
}

form {
    margin-top: 20px;
}

input[type="tel"] {
    font-size: 16px;
    padding: 10px;
    width: calc(100% - 22px); /* Adjust width for padding */
    border: 1px solid #ccc;
    border-radius: 4px; /* Rounded borders for input field */
}

button {
    font-size: 16px;
    color: #fff;
    background-color: #25D366; /* WhatsApp brand green color */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button:hover {
    background-color: #1eb75a; /* Slightly darker green on hover for visual feedback */
}

