/* --- About Page Specific Styles --- */

.about-content {
    padding: 50px 0;
    background-color: #f4f7f6; /* Light gray background to make cards pop */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #4721fb, #ab1dfe); /* Matching your Purple Crush gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-header p {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
}

/* Reusing your Card Design */
.nb9-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 5px solid #4721fb; /* Primary theme color */
    transition: transform 0.3s ease;
}

.nb9-card:hover {
    transform: translateY(-5px);
}

.nb9-card h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* List styling inside the cards */
.nb9-card ul {
    list-style: none;
    padding: 0;
}

.nb9-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.nb9-card ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #00d084; /* Your Vivid Green Cyan color */
    font-weight: bold;
}

/* Warning/Disclaimer Box Styling */
.nb9-warning {
    border-left: 5px solid #cf2e2e !important; /* Vivid Red */
    background-color: #fff5f5;
}

.nb9-warning h3 {
    color: #cf2e2e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
    .about-content {
        padding: 30px 15px;
    }
}
/* --- Header & Navigation CSS --- */

/* Basic Header Styling */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #4721fb; /* Theme Purple */
}

/* Mobile Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #4721fb, #ab1dfe); /* Purple Crush Gradient */
    padding: 40px 20px;
    transition: 0.4s ease-in-out;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.close-btn {
    color: #fff;
    font-size: 35px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

/* --- Responsive Breakpoint --- */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide desktop nav */
    }

    .hamburger {
        display: flex; /* Show hamburger */
    }
}
