body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    padding: 20px;
}

.container {
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.domain-name {
    font-size: 2.5em;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 3px solid #3498db;
    padding-bottom: 5px;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-button:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}
