.administrative-container {
   
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    position: relative;
    font-family: 'Crafty Girls', cursive;
}

.page-title {
    padding-top: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: 'Crafty Girls', cursive;
    
    position: relative;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        0 0 10px rgba(255, 215, 0, 0.3);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.info-section {
    background-color: rgba(45, 19, 197, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #FFD700;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.info-section h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Crafty Girls', cursive;
    padding-left: 1rem;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
        0 0 5px rgba(255, 215, 0, 0.3);
}

.info-section p,
.requirements li,
.steps li,
.important-note p {
    font-family: 'Crafty Girls', cursive;
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

.action-button {
    text-align: center;
    margin: 2rem auto;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
}

.action-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFD700;
    color: var(--dark-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Crafty Girls', cursive;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
   
}


.requirements ul,
.steps ol {
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.requirements li,
.steps li {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
    padding-left: 0.5rem;
    font-family: 'Crafty Girls', cursive;
    color: white;
}

.requirements li::before {
    color: #FFD700;
}

.steps li::before {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.important-note {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 15px 15px 0;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.important-note::before {
    content: '💡';
    position: absolute;
    left: -12px;
    top: -12px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.important-note p {
    font-family: 'Crafty Girls', cursive;
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .administrative-container {
        margin: 2rem auto;
    }

    .page-title {
        font-size: 2rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .info-section p,
    .requirements li,
    .steps li,
    .important-note p {
        font-size: 1rem;
    }
} 

/* Style pour les éléments mis en évidence */
.highlight {
    color: #FFD700;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    position: relative;
    padding: 0 2px;
}

.highlight-special {
    color: #FFD700;
    font-weight: bold;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Animation subtile au survol des éléments mis en évidence */
.highlight:hover, 
.highlight-special:hover {
    animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                     0 0 15px rgba(255, 215, 0, 0.3);
    }
}

/* Ajustement pour le responsive */
@media (max-width: 768px) {
    .highlight,
    .highlight-special {
        font-size: 0.95rem;
    }
} 

/* Ajustements pour les très petits écrans mobiles */
@media (max-width: 375px) {
    .administrative-container {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .page-title {
        font-size: 1.5rem;
        padding-top: 5rem;
        margin-bottom: 2rem;
    }

    .info-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .info-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-left: 0.8rem;
    }

    .info-section p,
    .requirements li,
    .steps li,
    .important-note p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .action-button a {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .action-button a::before {
        font-size: 1rem;
    }

    .requirements ul,
    .steps ol {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .important-note {
        padding: 1rem;
        margin-top: 1rem;
    }

    .important-note::before {
        font-size: 1rem;
        left: -10px;
        top: -10px;
        padding: 4px;
    }

    .highlight,
    .highlight-special {
        font-size: 0.9rem;
    }

    .steps li::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .requirements li::before {
        font-size: 1rem;
    }
} 