*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 50px;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.logo img {
    max-width: 350px;
    height: auto;
}

.welcome-text {
    margin-top: 20px;
}

.welcome-text h1 {
    color: #333;
    font-size: 35px;
    margin-bottom: 10px;
}

.welcome-text p {
    color: #666;
    font-size: 18px;
    margin-bottom: 20px;
}

.live-chat-button button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.live-chat-button button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
    .container {
        max-width: 90%;
    }

    .logo img {
        max-width: 80px;
    }

    .welcome-text h1 {
        font-size: 20px;
    }

    .welcome-text p {
        font-size: 16px;
    }

    .live-chat-button button {
        font-size: 16px;
    }
}
