/* Modern Dark Theme Enhancements */
body {
    background-color: #121212; /* Deep dark background */
    color: #e0e0e0; /* Light text for readability */
    font-family: 'Inter', sans-serif; /* Modern sans-serif font */
    line-height: 1.6;
}

.wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
}

.cyber-page-container {
    background: linear-gradient(135deg, #1a1a1a, #242424); /* Subtle gradient for freshness */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5); /* Soft shadow for depth */
    padding: 20px; /* Reduced padding to make the block smaller */
    overflow: hidden;
    margin-top:100px;
}

.accordion-header {
    cursor: pointer;
    background: linear-gradient(90deg, #2c2c2c, #1e1e1e); /* Gradient for modern look */
    color: #ffffff;
    padding: 10px; /* Reduced padding to make buttons smaller */
    border-radius: 8px; /* Slightly smaller border-radius */
    margin-bottom: 8px; /* Reduced margin */
    transition: all 0.3s ease;
    position: relative;
    font-size: 1em; /* Reduced font-size */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header::after {
    content: '\002B'; /* Plus icon */
    font-size: 1.2em; /* Slightly smaller icon */
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    content: '\2212'; /* Minus icon */
    transform: rotate(180deg);
}

.accordion-header:hover {
    background: linear-gradient(90deg, #3a3a3a, #2a2a2a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px); /* Slight lift on hover */
}

.accordion-body {
    background: #212121;
    overflow: hidden;
    max-height: 0;
    padding: 0 10px; /* Reduced padding */
    border-radius: 8px; /* Matching smaller border-radius */
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.accordion-body.active {
    padding: 10px; /* Reduced active padding */
    opacity: 1;
}

.accordion-body p {
    margin: 8px 0; /* Reduced margin */
    color: #d0d0d0;
    font-size: 0.9em; /* Slightly smaller font for content */
}

/* Add subtle borders and animations */
.accordion-header + .accordion-body {
    border-top: 1px solid #333333;
}

/* Ensure smooth transitions */
@media (prefers-reduced-motion: no-preference) {
    .accordion-body {
        transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.4s ease, opacity 0.4s ease;
    }
}