.politique-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffff, #000000, #ffffff);
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* allow scrolling */
    scrollbar-width: thin;
    scrollbar-color: #fff4e3 #000000;
}

.politique-content header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    border-bottom: 3px solid #fff4e3;
    background: transparent;
    color: #fff4e3; 
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Orbitron', Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(20,1,63,0.15);
    animation: brumeAppear 1s ease-out;
    border-radius: 8px;
    padding: 1rem 2rem;
    /* margin-bottom: 1100px; <-- REMOVE this line */
}

.politique-content header h1 {
    margin: 0;
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-left: 32px;
    color: #fff4e3;
    text-shadow: 5px 3px 5px #000000;  
}

@keyframes brumeAppear {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.politique-content .po-left,
.politique-content .po-right {
    flex: 1;
}

.politique-content .po-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.politique-content .btn {
    background: linear-gradient(90deg, #000000, #fff4e3, #000000);
    color: #000000;
    border: 1px solid #fff4e3;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin: 0.5rem 0;
   width: 30%;
    transition: transform 0.3s ease;
}

.btn:hover {
    background: linear-gradient(90deg, #376cff, #fff4e3, #376cff);
    color: #000000;
    transform: scale(1.1);
}

.politique-content main {
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 0 1rem 0; /* Adjust to match header height */
    min-height: unset;
    gap: 0.5rem;
    height:auto;
    width:auto; 
}

.politique-content .po-type {
    background: rgb(255, 255, 255);
    border-radius: 18px;
    box-shadow: 0 2px 20px #14013f44;
    padding: 3rem 2.5rem 0rem 2.5rem;
    max-width: 1400px;
    width: 100%;
    margin-top: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers children horizontally */
    gap: 0.1rem;
    
}

.politique-content .po-type {
    /* ...existing styles... */
    margin-bottom: 1rem; /* Add this line */
}

.politique-content .po-type h2,
.politique-content .po-type h3,
.politique-content .po-type p,
.politique-content .po-type ul {
    text-align: center;
    text-shadow: none;
}


.politique-content .po-type h2 {
    color: #000000;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
}

.politique-content .po-type h3 {
    color: #376cff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.politique-content .po-type li {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    line-height: 1.6;
}

.politique-content .po-type p {
    color: #050505;
    margin: 0;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .politique-content .po-type ul {
        padding: 1.2rem 0.5rem 1.5rem 0.5rem;
        max-width: 98vw;
    }
    .politique-content .special,
    .politique-content .po-type h2 {
        font-size: 1.3rem;
    }
    .politique-content header {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    .politique-content header h1 {
        font-size: 1.3rem;
    }
}

html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}