/* Formulaire */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
.contact-form input,
.contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5360d6;
    box-shadow: 0 0 5px #5360d6;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background: #5360d6;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.contact-form button:hover {
    background: #5360d6;
    opacity: 0.9;
}
.success-message {
    color: green;
    font-size: 14px;
    margin-bottom: 10px;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Intro Section */
.intro-section {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}
.intro-section img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.intro-section img:hover {
    transform: scale(1.1);
}
.intro-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Responsiveness */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
        margin: 30px auto;
    }
    .contact-form h2 {
        font-size: 20px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }
    .contact-form button {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .contact-form {
        padding: 10px;
    }
    .contact-form h2 {
        font-size: 18px;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
        padding: 2px;
    }
    .contact-form button {
        font-size: 14px;
        padding: 8px;
    }
}