body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    color: #fff;
}

.container {
    max-width: 600px;
    width: 100%;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Updated box shadow */
}


h1 {
    color: #333;
}

p {
    color: #555;
}

.contact-form {
    margin-top: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-bottom: 5px;
    color: #333;
}

.mui-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.mui-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.mui-btn--primary {
    background-color: #ff4500;
    color: #fff;
}

.mui-btn:hover {
    background-color: #cc3700;
}
/* ... Your existing styles ... */

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0px 20px;
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff4500;
}
