* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

header {
    margin-bottom: 30px;
}

.main-title {
    font-size: 3rem;
    color: #ff5678;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
}

.domain-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.domain-btn {
    text-decoration: none;
    font-size: 1.3rem;
    color: white;
    background-color: #ff5678;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.domain-btn:hover {
    background-color: #ff789a;
}

section {
    margin-top: 20px;
    text-align: left;
}

h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

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

.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

input, textarea {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

textarea {
    resize: none;
}

button {
    background-color: #ff5678;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff789a;
}

.checkbox label {
    display: inline;
}

.checkbox input {
    margin-right: 10px;
}

.hidden {
    display: none;
}

footer {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 20px;
}
