* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #333333;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 600px;
}

/* Logo Styling */
.logo {
    margin-bottom: 40px;
}

.logo-img {
    max-width: 100%;
    width: 300px;
    height: auto;
    border-radius: 4px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Social Icons */
.social-icons {
    margin-bottom: 40px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 10px;
    border: 1px solid white;
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: white;
    color: #333;
}

/* Form Styling */
.email-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.email-form input {
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
    width: 250px;
    outline: none;
}

.email-form button {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #d32f2f;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.email-form button:hover {
    background-color: #b71c1c;
}

/* Responsive for mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .email-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .email-form button {
        width: 100%;
    }
}