* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
}

header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

.logo img {
    width:200px;
}

.nav-links {
    text-align: center;
}

.nav-links li {
    list-style: none;
    display:inline;
    padding:0 15px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #691c81;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #691c81;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        z-index:100 !important;
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1;
    }
    .nav-links li {
        opacity: 0;
        padding:30px 0;
        font-size:2rem;
    }
    .burger {
        z-index:101 !important;
        display: block;
        z-index: 2;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px,-6px);
}

/* Hero */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: linear-gradient(135deg, #ffffff 0%, #f0e6f5 100%);
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero2 {
    height:40vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(105,28,129,0.05) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content img {
    width: 90%;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-content img:hover {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 4em;
    font-weight: 800;
    color: #691c81;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #691c81;
    color: white;
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border:2px solid #691c81;

    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(105,28,129,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105,28,129,0.4);
    background:transparent;
    color:#000;
    border:2px solid #691c81;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
}

/* A Propos */

.about-section {
    background-color: white;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: #691c81;
    margin-bottom: 20px;
    font-size:2.5rem;
}

.about-content p {
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
    font-size:1.1rem;
}

.values ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    justify-content: center;
}

.values li {
    background-color: #f4f4f4;
    padding: 10px 15px;
    border-radius: 20px;
    color: #691c81;
}

.about-section h3 {
    margin:20px 0;
    font-size:1.5rem;
    color:#691c81;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sectors {
    margin-top: 50px;
    text-align: center;
}

.sectors h3 {
    font-size:1.8rem;
}

.sector-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: #691c81;
    font-size:1.2rem;
}

@media screen and (max-width:970px) {
    .about-container {
        flex-direction: column-reverse;
        padding: 0 20px;
    }

    .about-image {
        width: 100%;
        margin-bottom: 40px;
    }

    .about-content {
        text-align: left;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .values {
        margin: 40px 0;
    }

    .values ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .values li {
        flex: 1;
        min-width: 140px;
        text-align: center;
        padding: 15px;
        font-size: 0.9rem;
    }

    .sectors {
        margin-top: 40px;
        padding: 0 20px;
    }

    .sector-grid {
        gap: 15px;
        font-size: 1rem;
        padding: 20px;
        background: #f9f4fc;
        border-radius: 10px;
    }
}

@media screen and (max-width: 480px) {
    .about-container {
        padding: 0 15px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .values li {
        min-width: 100%;
    }

    .sector-grid {
        font-size: 0.9rem;
        padding: 15px;
    }
}

/* Prestations */

.expertise-section {
    background: linear-gradient(135deg, #f9f4fc 0%, #ffffff 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(105,28,129,0.05) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    z-index: 0;
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.expertise-section h2 {
    font-size: 2.5em;
    color: #691c81;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.expertise-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #691c81;
    margin: 15px auto 0;
}

.intro, .outro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #333;
}

.expertise-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.expertise-card {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(105,28,129,0.2);
}

.expertise-card h3 {
    color: #691c81;
    font-size: 1.4em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.expertise-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #691c81;
}

.expertise-card ul {
    list-style-type: none;
    padding: 0;
}

.expertise-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.expertise-card li::before {
    content: '•';
    color: #691c81;
    position: absolute;
    left: 0;
}

.expertise-section .cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 15px 30px;
    background-color: #691c81;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(105,28,129,0.3);
}

.expertise-section .cta-button:hover {
    background-color: #7f2d9b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(105,28,129,0.4);
}

@media (max-width: 768px) {
    .expertise-grid {
        flex-direction: column;
    }
    
    .expertise-card {
        margin-bottom: 20px;
    }
}

/* F.A.Q */

.faq-section {
    background-color: white;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(105,28,129,0.03) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    font-size: 2.5em;
    color: #691c81;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #691c81;
    margin: 20px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-question {
    font-size: 1.3em;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #691c81;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: #691c81;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 10px;
    opacity: 0;
    background-color: #f9f4fc;
    border-radius: 0 0 10px 10px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Ajustez selon vos besoins */
    padding: 20px;
    opacity: 1;
}

.faq-answer p {
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 5%;
    }

    .faq-section h2 {
        font-size: 2em;
    }

    .faq-question {
        font-size: 1.1em;
    }
}

/* C.T.A */

.cta-section {
    background-color: #691c81; /* Couleur de fond principale */
    color: white; /* Couleur du texte */
    padding: 80px 5%;
    text-align: center;
    position: relative;
    margin:80px auto;
    width:80%;
    border-radius:30px;
}

.cta-container {
    position: relative;
    z-index: 1; /* Assure que le contenu est au-dessus de l'ombre */
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-section .cta-button {
    background-color: white; /* Couleur de fond du bouton */
    color: #691c81; /* Couleur du texte du bouton */
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 50px; /* Bords arrondis */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
    background-color: #f4f4f4; /* Couleur de fond au survol */
    transform: translateY(-3px); /* Effet de levée au survol */
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2em; /* Ajustement de la taille du titre sur mobile */
    }

    .cta-section p {
        font-size: 1em; /* Ajustement de la taille du texte sur mobile */
        margin-bottom: 30px; /* Réduction de l'espacement sous le texte */
    }

    .cta-section .cta-button {
        padding: 10px 20px; /* Ajustement de l'espacement interne du bouton sur mobile */
        font-size: 1em; /* Ajustement de la taille du texte du bouton sur mobile */
    }
}

/* Footer */

.footer {
    background-color: #f9f9f9; /* Couleur de fond claire */
    padding: 40px 5%;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    max-width:250px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* Espacement entre les éléments du menu */
}

.footer-menu a {
    text-decoration: none;
    color: #333; /* Couleur du texte */
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #691c81; /* Changement de couleur au survol */
}

.footer-bottom {
    margin-top: 20px; /* Espacement au-dessus du bas du footer */
}

.footer-bottom p {
    margin-bottom: 10px; /* Espacement sous le copyright */
}

.legal-link {
    text-decoration: none;
    color: #691c81; /* Couleur du lien */
}

.legal-link:hover {
    text-decoration: underline; /* Soulignement au survol */
}

@media screen and (max-width:650px) {
    .footer-container {
        flex-direction: column;
    }
}

/* Prestations Page */

.prestations-page-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9f4fc 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.prestations-page-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(105,28,129,0.05) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    z-index: 0;
}

.prestations-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prestations-page-section h2 {
    font-size: 2.5em;
    color: #691c81;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.prestations-page-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #691c81;
    margin: 15px auto 0;
}

.prestations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #333;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.prestation-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(105,28,129,0.2);
}

.prestation-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.prestation-card h3 {
    color: #691c81;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.prestation-card ul {
    list-style-type: none;
    padding: 0;
}

.prestation-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.prestation-card li::before {
    content: '•';
    color: #691c81;
    position: absolute;
    left: 0;
}

.prestations-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 1024px) {
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .prestations-page-section {
        padding: 40px 20px;
    }

    .prestations-container {
        padding: 0;
    }

    .prestations-page-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .prestations-intro {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 35px;
        line-height: 1.6;
    }

    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .prestation-card {
        padding: 25px;
        border-radius: 15px;
        background: white;
        box-shadow: 0 10px 25px rgba(105, 28, 129, 0.08);
    }

    .prestation-card:hover {
        transform: translateY(-3px);
    }

    .prestation-icon {
        margin-bottom: 25px;
    }

    .prestation-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        color: #691c81;
    }

    .prestation-card ul {
        padding: 0;
    }

    .prestation-card li {
        margin-bottom: 15px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .prestations-footer {
        padding: 30px 20px;
        margin-top: 20px;
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .prestations-page-section {
        padding: 30px 15px;
    }

    .prestations-page-section h2 {
        font-size: 1.8rem;
    }

    .prestation-card {
        padding: 20px;
    }

    .prestation-card h3 {
        font-size: 1.3rem;
    }

    .prestation-card li {
        font-size: 0.9rem;
    }

    .prestations-footer {
        padding: 25px 15px;
    }
}

/* Contact */

.contact-section {
    background-color: #f9f4fc; /* Fond léger pour la section */
    padding: 80px 5%;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #691c81;
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 40px;
    color: #333;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(105, 28, 129, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 1em;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #691c81;
    box-shadow: 0 0 0 3px rgba(105, 28, 129, 0.1);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.submit-button {
    background-color: #691c81;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

textarea {
    resize: vertical;
}

.submit-button:hover {
    background-color: #7f2d9b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(105, 28, 129, 0.2);
}

.submit-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(105, 28, 129, 0.2);
}

/* Animation pour le focus des champs */
.form-group input:focus ~ label,
.form-group textarea:focus ~ label {
    color: #691c81;
    transform: translateY(-25px);
    font-size: 0.8em;
}

/* Style pour les messages d'erreur (à ajouter si nécessaire) */
.error-message {
    color: #ff3860;
    font-size: 0.85em;
    margin-top: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
        background: linear-gradient(135deg, #f9f4fc 0%, #ffffff 100%);
    }

    .contact-container {
        padding: 0 10px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .contact-section p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .contact-form {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(105, 28, 129, 0.08);
    }

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

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
        text-align: left;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-button {
        margin-top: 10px;
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        background: #691c81;
        transition: all 0.3s ease;
    }

    .submit-button:active {
        transform: scale(0.98);
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }

    .contact-container {
        padding: 0 5px;
    }

    .contact-section h2 {
        font-size: 1.6rem;
        padding: 0 5px;
    }

    .contact-form {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 15px;
    }

    .submit-button {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* Mentions Légales */

.legal-section {
    background-color: #f9f9f9;
    padding: 60px 5%;
    font-family: 'Montserrat', sans-serif;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-section h1 {
    color: #691c81;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.legal-section h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #691c81;
    margin: 20px auto 0;
}

.legal-article {
    margin-bottom: 40px;
}

.legal-article h2 {
    color: #691c81;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.company-info, .management-info, .host-info {
    background-color: #f9f4fc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.company-info h3, .host-info h3 {
    color: #691c81;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.legal-article p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 20px;
    }

    .legal-section h1 {
        font-size: 2em;
    }

    .legal-article h2 {
        font-size: 1.5em;
    }
}

a {
    color:#7f2d9b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}