<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">


body {

    background-color: #f4f4f4;
    text-align: center;
}
.logo-img{width:30px}
#form-container {
    margin: 50px auto;
	max-width: 800px;
    margin: auto;
    gap: 20px;
    justify-content: center;
	flex-wrap: wrap;
}

form {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

input {
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 10px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #555;
}

body {
	

    padding: 0;
    background-color: #f4f4f4;
	  margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}



header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    position: block;
	width:100%;
	    flex-wrap: wrap;
  
    top: 0;
    z-index: 1000;
}
#headerblog {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    position: block;
  
    top: 0;
    z-index: 1000;
}

#headerblog h1 {
   color:white
}

header .logo1 h1 {
    margin: 0;
	color:white!important;
	text-decoration:none!important;
		border:none;
	font-size: 15px;
	margin:0px

}

header a{
   
	text-decoration:none!important;
		border:none
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
    position: relative;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header .dropdown {
    position: relative;
}

header .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
	padding:2px
}

header .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

header .dropdown-content a:hover {
    background-color: #ddd;
}

header .dropdown:hover .dropdown-content {
    display: block;
}


.user-menu {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info span {
    margin-right: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

body {
   
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.main-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

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

label {
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

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

button {
    padding: 10px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background: #555;
}

/* Conteneur FAQ */


/* Titres des sections */
.faq-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

/* Items FAQ */
.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

/* Titres des questions */
.faq-title {
    font-size: 1.2em;
    color: #007BFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

/* Icône des titres */
.faq-title::after {
    content: '\002B'; /* + */
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

/* Titres des questions au survol */
.faq-title:hover {
    color: #0056b3;
}

/* Contenu des réponses */
.faq-content {
    display: none;
    padding: 10px 0;
    font-size: 1em;
    color: #666;
    line-height: 1.5em;
    transition: max-height 0.3s ease;
}

/* Active les titres ouverts */
.faq-item.active .faq-title {
    color: #0056b3;
}

/* Icône des titres ouverts */
.faq-item.active .faq-title::after {
    content: '\2212'; /* - */
    transform: rotate(180deg);
}

/* Contenu des réponses ouvertes */
.faq-item.active .faq-content {
    display: block;
}

/* Ajout d'animation */
@keyframes slideDown {
    from {
        max-height: 0;
    }
    to {
        max-height: 500px;
    }
}

.faq-content {
    overflow: hidden;
    animation: slideDown 0.3s ease forwards;
}

body {
    background-color: #f8f9fa;
   
    margin: 0;
    padding: 0;
    color: #333;
}

.article-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #666;
}

.content h2 {
    font-size: 1.8em;
    color: black;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.content p, .content ul {
    font-size: 1em;
    line-height: 1.6em;
    color: #555;
    margin-bottom: 20px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #aaa;
}

.login-icon {
            font-size: 1.2em;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .login-icon i {
            margin-right: 8px;
        }

        .login-icon:hover {
            color: white;
        }


#content-frm{max-width:1000px;
margin:auto}


.advice-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.advice-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 200px;
    text-align: center;
}

.advice-item:hover {
    transform: translateY(-10px);
}

.advice-item img {
    width: 100%!important;
    height: auto;
}

.advice-item h3 {
    margin: 10px 0;
    font-size: 1.2em;
    color: #333;
}

.intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    color: black;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	text-align:center
}

.intro h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.2em;
    line-height: 1.6em;
    margin: 0;
}

.intro img{width:50%}

.topic{ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: white; 
padding:10px; 
margin-bottom: 10px;padding-bottom:20px;
text-align: center}

.topic a{ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: white; 
padding:10px; 
margin-bottom: 100px; 
text-decoration:none}


@media only screen and (max-width: 600px) {
#content-frm{max-width:1000px;
margin:auto; 
	padding:5px; text-align:center}
	
	header {
    padding: 10px;
		width:auto!important

}
	header .logo1 h1 {
    margin-bottom: 10px;
    color: white !important;
    text-decoration: none !important;
    border: none;
    font-size: 25px;
	margin:0px;
	
}
header .logo1{
  
	margin-bottom:10px;
	
}
}





