/* General Reset and Font */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; 
    background-color: #f8f8f8; /* A lighter, neutral background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    text-align: center;
}

/* Container Styles - Structured and Clean */
.container {
    max-width: 90%;
    width: 650px;
    padding: 50px 40px;
    background-color: #fff; 
    border-radius: 8px; 
    border-top: 5px solid #E4892A; /* Orange accent border at the top */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
}

/* Logo Style */
.logo {
    max-width: 250px; /* Adjust as needed */
    height: auto;
    margin-bottom: 40px; /* More space below the logo */
}

/* Main Heading Style */
h1 {
    font-size: 2.2em;
    color: #5F408D; /* Logo's Purple */
    margin-bottom: 10px;
}

/* Subtitle Style - Focus on core business */
.subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Details Section */
.coming-soon-details p {
    font-size: 1em;
    color: #777;
    padding: 15px;
    background-color: #fdfdfd; /* Very light background for this section */
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px dashed #eee; /* Lighter dashed border */
}

/* Social Media Icons */
.social-links {
    margin-top: 20px;
    margin-bottom: 25px;
}

.social-icon {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #5F408D; /* Logo's Purple */
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 10px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
    background-color: #E4892A; /* Logo's Orange on hover */
    transform: translateY(-3px); 
}

.contact-note {
    font-size: 0.9em;
    color: #888;
    margin-top: 20px;
}

/* Media Query for smaller screens (responsiveness) */
@media (max-width: 600px) {
    h1 {
        font-size: 1.6em;
    }

    .container {
        padding: 30px 20px;
    }
    .logo {
        max-width: 200px; /* Slightly smaller logo on mobile */
    }
}