* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

/* Variables de couleurs - intentionnellement discordantes */
:root {
    --primary: #ff00ff;
    --secondary: #00ff00;
    --accent: #ffff00;
    --background: #b3e6ff;
    --text: #660066;
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff00ff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 3px 3px 0 var(--accent);
    letter-spacing: -1px;
    transform: rotate(-2deg);
    display: inline-block;
}

nav {
    background-color: var(--accent);
    padding: 0.5rem;
    text-align: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

nav a:hover {
    animation: wiggle 0.5s infinite;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 2.5rem;
    text-shadow: 2px 2px 0 var(--accent);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px dashed var(--primary);
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--secondary);
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-icon {
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2) rotate(15deg);
    background-color: var(--secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border-radius: 5px;
    border: 2px solid var(--accent);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s;
    border: 3px solid var(--accent);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.1) rotate(-5deg);
    background-color: var(--secondary);
}

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid var(--accent);
}

.map {
    width: 100%;
    height: 400px;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text);
}

.success-message, .error-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.faq-section {
    margin-top: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px dotted var(--accent);
}

.faq-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: bold;
    color: var(--text);
    margin-bottom: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    background-color: var(--background);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    nav a {
        margin: 0 8px;
        font-size: 1rem;
    }
}