/* Styles généraux */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5276;
}

.domain-name {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Boutons */
.contact-button, .submit-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a5276;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-button:hover, .submit-button:hover {
    background-color: #154360;
}

.back-button {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #7f8c8d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #6c7a7d;
}

/* Formulaire */
.contact-form {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

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

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Succès */
.success-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
}

/* Pied de page */
footer {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}
