

.contact-card {
    display: flex;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.img-card {
    height: 100%;
}

.profile-background {
    background-color: #f0f0f0;
    display: flex;
    padding: 1rem;
    align-items: center;
}

.profile {
    flex: 1;
    padding: 20px;
    height: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.img-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-info {
    flex: 2;
    display: flex;
}

.contact-method {
    flex: 1;
    padding: 20px;
    min-width: 150px;
}

.icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-method .icon {
    background-color: #f0f0f0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.contact-method .icon svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.contact-method h3 {
    margin-top: 0;
    font-size: 1.2em;
}

.contact-method p {
    font-size: 0.9em;
    color: #666;
}

.profile-container {
    display: flex;
}

h3 {
    text-align: left;
}

/* Styles pour le formulaire de feedback */
.feedback-card {
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 97%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 20px;
}

.star-rating {
    display: inline-block;
    direction: rtl;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 30px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.star-rating label:before {
    content: '★';
}

.star-rating input[type="radio"]:checked ~ label {
    color: #ffc107;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
    }
    .contact-info {
        flex-direction: column;
    }
    .feedback-card {
        padding: 15px;
    }
}

#success-feedback{
    display: flex;
    justify-content: center;
}

#success-feedback-p {
    color: green;
    text-align: center;
    font-family: "Hind Madurai", system-ui;
    font-weight: bolder;
    font-style: normal;
}