
        /* 6. FORMULAIRE DE CONTACT */
        .contact-form-container {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #611a64;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #611a64;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-family: inherit;
            font-size: 10pt;
        }
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #611a64;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 11pt;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #b80e7d;
        }
        /* Honeypot field */
        .hp-field {
            display: none !important;
            visibility: hidden;
        }