/* Header */
.header {
    position: fixed;
  height: 45px;
  top: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
  align-items: center; 
    display: flex;
    background: linear-gradient(to bottom, rgba(139, 0, 139, 0.9) 0%, rgba(245, 237, 226, 0) 100%);
    justify-content: space-between;
    z-index: 1000;
}

.header-item.header-left {
font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
  letter-spacing: 3px;
    color: #F5EDE2;
}

.header-item.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 30px;
    font-family: 'Bebas Neue', sans-serif;
}

.header-item.header-right a {
    color: #F5EDE2;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-item.header-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #FFFF00;
    transition: width 0.3s ease;
}

.header-item.header-right a:hover {
    color: #FFFF00;
}

.header-item.header-right a:hover::after {
    width: 100%;
}
/* retour à l'acc */
.header-left-link {
    font-size: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
    color: #F5EDE2;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.header-left-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #FFFF00;
    transition: width 0.3s ease;
}

.header-left-link:hover {
    color: #FFFF00;
}

.header-left-link:hover::after {
    width: 100%;
}
/* Section interview */
.interview-section {
    padding: 120px 300px;
    background-color: #F5EDE2;
}

/* Titre de la section */
.interview-title {
    font-size: 30px;
    font-weight: bold;
    color: #8B008B;
    text-align: left; 
    margin-bottom: -20px;
    font-family: 'Bebas Neue', sans-serif;
}

.interview-subtitle {
    font-size: 18px;
    color: #8B008B;
    text-align: left; 
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
}


/* Colonnes question / réponse */
.interview-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Questions */
.interview-question p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #8B008B;
    text-align: justify;
   text-align:right;
    line-height: 1.2;
    margin-bottom: -20px;
}

/* Réponses */
.interview-answer p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #8B008B;
    text-align: justify;
    line-height: 1.4;
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .interview-section {
        padding: 100px 60px;
    }

    .interview-title {
        text-align: center;
        font-size: 26px;
    }

    .interview-subtitle {
        text-align: center;
        font-size: 16px;
    }

    .interview-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .interview-question p {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .interview-answer p {
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 968px) {
    .interview-section {
        padding: 100px 60px;
    }

    .interview-title {
        text-align: center;
        font-size: 26px;
    }

    .interview-subtitle {
        text-align: center;
        font-size: 16px;
    }

    .interview-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .interview-question p {
        text-align: left;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .interview-answer p {
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
        height: auto;
    }

    .header-item.header-left {
        font-size: 18px;
    }

    .header-item.header-right {
        gap: 15px;
        font-size: 20px;
    }

    .header-left-link {
        font-size: 24px;
    }

    .interview-section {
        padding: 120px 20px 80px;
    }

    .interview-title {
        font-size: 24px;
        margin-bottom: -15px;
    }

    .interview-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .interview-columns {
        gap: 25px;
        margin-bottom: 40px;
    }

    .interview-question p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .interview-answer p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}