.user-info-bar {
    background: #0066cc;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border-radius: 0;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}
.user-info-bar .user-icon {
    color: #fff;
    font-size: 1.5em;
    margin-right: 8px;
}
.user-info-bar .user-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 1px;
    margin-right: 6px;
    font-family: 'Montserrat', sans-serif;
}
.user-info-bar .user-role {
    color: #e9f2ff;
    font-style: italic;
    font-weight: 600;
    font-size: 1em;
    margin-right: 10px;
    font-family: 'Montserrat', sans-serif;
}
.user-info-bar .user-time {
    background: #e9f2ff;
    color: #0056b3;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 1em;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
}
.user-info-bar .logout-btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
}
.user-info-bar .logout-btn:hover {
    background: #b71c1c;
}
.user-info-bar button.logout-btn,
.user-info-bar input[type="submit"].logout-btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
}
.user-info-bar button.logout-btn:hover,
.user-info-bar input[type="submit"].logout-btn:hover {
    background: #b71c1c;
}
/* --- User Info Bar Styles --- */
.user-info-bar {
    background: #0066cc;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border-radius: 0;
    margin-bottom: 18px;
}
.user-info-bar .user-icon {
    color: #fff;
    font-size: 1.5em;
    margin-right: 8px;
}
.user-info-bar .user-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 1px;
    margin-right: 6px;
}
.user-info-bar .user-role {
    color: #e9f2ff;
    font-style: italic;
    font-weight: 600;
    font-size: 1em;
    margin-right: 10px;
}
.user-info-bar .user-time {
    background: #e9f2ff;
    color: #0056b3;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 1em;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.user-info-bar .logout-btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.user-info-bar .logout-btn:hover {
    background: #b71c1c;
}
/* --- Basic Reset & Modern Typography --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Poppins', sans-serif; 
    background: #f8f9fa; 
    color: #343a40; 
    line-height: 1.8; 
    width: 100%;
    margin: 0 auto; /* Center the body */
}
.container { max-width: 1368px; margin: auto; padding: 0 20px; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* --- Header & Navigation --- */
.header { 
    background: #ffffff; 
    padding: 0;
    border-bottom: 2px solid #e9ecef; 
    height: 185px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-content { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 40px;
    width: 1368px;
    max-width: 1368px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Sections */
.header-section {
    display: flex;
    align-items: center;
    flex: 1;
}

.left-section {
    justify-content: flex-start;
    margin-right: 20px;
}

.center-section {
    justify-content: center;
    gap: 20px;
    flex: 2; /* Give center section more space */
    margin: 0 20px;
}

.right-section {
    justify-content: flex-end;
    margin-left: 20px;
}

/* Logo styles */
.logo-block { flex-shrink: 0; }
.logo-block img.logo { height: 120px; }

/* Header image */
.header-image {
    height: 175px; /* Use most of the 185px header height */
    width: auto; /* Let width scale proportionally */
    object-fit: contain; /* Maintain aspect ratio */
    max-width: none; /* Remove width restriction */
}

/* Header text */
.header-text { text-align: center; }
.header-text .site-title { 
    font-size: 1.3em; 
    color: #212529; 
    margin: 0;
    white-space: nowrap;
}

/* Leader profile styles */
.leader-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    /* Make profile look like a compact card */
    background: #ffffff;
    padding: 6px; /* slightly increased padding for balance */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    
    width: 300px; /* match profile column width */
    /* vertically center the card within the profile column */
    margin: auto 0;
    box-sizing: border-box;
}

/* Remove specific collector styling since both are now vertical */

.leader-profile .leader-img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0056b3;
    flex-shrink: 0;
    background-clip: padding-box;
}
.leader-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 180px;
    text-align: center;
}
.leader-info h4 {
    font-size: 0.9em;
    font-weight: 600;
    margin: 0;
    color: #343a40;
    line-height: 1.2;
}
.leader-info p {
    font-size: 0.8em;
    margin: 0;
    color: #6c757d;
    line-height: 1.2;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-section {
        width: 100%;
        justify-content: center !important;
    }
    
    .center-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-text .site-title {
        white-space: normal;
        font-size: 1.1em;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav ul li a {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}

/* Navigation Bar */
.main-nav { 
    background: #0066cc;
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: none;
}
/* Updated by session management - these styles are now handled in session_manager.php */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1368px;
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 10px;
}
.nav-left ul { 
    list-style: none; 
    display: flex; 
    padding: 0;
    margin: 0;
    gap: 0;
}
.nav-left ul li a { 
    color: #ffffff;
    background: transparent;
    text-decoration: none; 
    font-weight: 500; 
    padding: 15px 30px; 
    display: block; 
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.nav-left ul li:last-child a {
    border-right: none;
}
.nav-left ul li a:hover { 
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

/* Fallback for old nav structure */
.main-nav ul { 
    list-style: none; 
    display: flex; 
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 0;
}
.main-nav ul li a { 
    color: #ffffff;
    background: transparent;
    text-decoration: none; 
    font-weight: 500; 
    padding: 15px 30px; 
    display: block; 
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.main-nav ul li:last-child a {
    border-right: none;
}
.main-nav ul li a:hover { 
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

/* --- 1. Hero Section (UPDATED FOR MARQUEE WITH PROFILES) --- */
.hero {
    position: relative;
    background: transparent;
}

/* New: Hero with profiles layout */
.hero-with-profiles {
    display: flex;
    align-items: center;
    gap: 20px; /* gap between three sections */
    padding: 0 10px; /* match sidebars-container padding */
    width: 100%;
    max-width: 1368px; /* match page width */
    margin: 0 auto; /* center the container */
}

/* Profile sections on sides */
.profile-section {
    flex: 0 0 300px; /* fixed width to match sidebar below */
    display: flex;
    align-items: center;
    justify-content: center; /* center the card within its column */
    /* make the profile column match the marquee height so cards align vertically */
    height: 275px;
}

.left-profile {
    justify-content: center;
}

.right-profile {
    justify-content: center;
}

/* Marquee container in center */
.marquee-container {
    position: relative;
    /* Width calculation: 1368 - 20 (padding) - 300 - 300 - 40 (two 20px gaps) = 708px */
    flex: 0 0 708px;
    height: 275px; /* Keep increased height for larger images */
    overflow: hidden;
    max-width: 708px;
    margin: 0; /* Remove auto margin since parent handles spacing */
}

/* NEW: Marquee Container and Animation */
.hero-marquee {
    display: flex;
    width: 300%; /* Double width to accommodate duplicated images for seamless loop */
    height: auto; /* Fill entire marquee height */
    /* Seamless cycling animation - moves exactly half the width */
    animation: marquee-scroll 25s linear infinite;
}
/* Marquee item container */
.marquee-item {
    width: 15%; /* Each item takes 15% of container */
    flex-shrink: 0; /* Prevent items from shrinking */
    display: flex;
    flex-direction: column;
    padding: 10px; /* further reduce padding to tighten layout */
    box-sizing: border-box;
}

.hero-marquee img {
    width: 100%; /* Fill the marquee item container */
    height: 200px; /* Fixed uniform height for all images */
    object-fit: cover; /* Changed to cover to fill the fixed height uniformly */
    border-radius: 8px; /* Rounded corners for images */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Add subtle shadow */
}

/* Marquee caption styling */
.marquee-caption {
    margin-top: 8px;
    padding: 6px 8px;
    background: rgba(0, 86, 179, 0.9); /* Semi-transparent blue background */
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } /* Move exactly half the width for seamless cycling */
}

/* NEW: Text Below Marquee Styles */
.hero-text-overlay {
    position: static; /* Changed from absolute to static */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #343a40; /* Changed to dark color since no background overlay */
    background: none; /* Remove background overlay */
    padding: 0; /* Remove all padding */
    margin: 0; /* Remove all margins */
}
.hero-text-overlay h1 {
    font-size: 0.8em; /* Reduced to 25% of original (3.2em * 0.25 = 0.8em) */
    margin-bottom: 5px; /* Reduced margin */
    text-shadow: none; /* Remove text shadow */
}
.hero-text-overlay p {
    font-size: 0.3em; /* Reduced to 25% of original (1.2em * 0.25 = 0.3em) */
    font-weight: 400;
}

/* Responsive design for the new layout */
@media (max-width: 768px) {
    .hero-with-profiles {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-section {
        flex: none;
        width: 100%;
        justify-content: center !important;
    }
    
    .marquee-container {
        max-width: 100%;
        height: 200px;
    }
    
    .hero-text-overlay h1 {
        font-size: 0.6em; /* Adjusted for mobile */
    }
    
    .hero-text-overlay p {
        font-size: 0.25em; /* Adjusted for mobile */
    }
}

/* --- Sidebars Section --- */
.sidebars-section {
    padding: 10px 0;
    background: #f8f9fa;
}

.sidebars-container {
    display: flex;
    max-width: 1368px;
    margin: 0 auto;
    gap: 20px; /* two gaps between three columns = 40px accounted in center width */
    padding: 0 10px;
}

/* Left Sidebar - Navigation Menu */
.left-sidebar {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.left-sidebar h3 {
    color: #0056b3;
    font-size: 1.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056b3;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav ul li {
    margin-bottom: 4px; /* Reduced from 8px to 4px */
}

.sidebar-nav ul li a {
    display: block;
    padding: 6px 12px; /* Reduced from 10px 15px to 6px 12px */
    color: #343a40;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-nav ul li a:hover {
    background: #0056b3;
    color: #fff;
}

/* Center Content Area */
.center-content {
    flex: 0 0 708px; /* fixed to match marquee center width */
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    text-align: left; /* Changed from center to left for better readability */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 600px; /* Add height limit */
    overflow-y: auto; /* Make it scrollable */
}

/* Adjust post styles for sidebar layout */
.center-content .post-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.center-content .post-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8em;
}

.center-content .post-title {
    font-size: 1.4em; /* Reduced from 2.5em */
    color: #0056b3;
    margin-bottom: 15px;
    line-height: 1.3;
    background: #ffffff; /* dark red */
    padding-left: 3px;
    padding-right: 3px;
}

.center-content .post-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.center-content .author-avatar {
    width: 35px; /* Reduced from 50px */
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0056b3;
}

.center-content .author-name {
    font-weight: 600;
    color: #343a40;
    font-size: 0.9em;
}

.center-content .author-title {
    color: #6c757d;
    font-size: 0.8em;
}

.center-content .content-body {
    font-size: 0.9em; /* Reduced font size */
    line-height: 1.6;
    color: #343a40;
}

.center-content .content-body h2 {
    font-size: 1.2em; /* Reduced from 1.8em */
    color: #0056b3;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

.center-content .content-body h3 {
    font-size: 1em; /* Reduced from 1.4em */
    color: #343a40;
    margin-top: 15px;
    margin-bottom: 8px;
}

.center-content .content-body p {
    margin-bottom: 12px;
    text-align: justify;
}

.center-content .highlight-quote {
    background: #f8f9fa;
    border-left: 3px solid #0056b3;
    padding: 12px 15px;
    margin: 15px 0;
    font-style: italic;
    font-size: 0.9em;
    color: #495057;
    border-radius: 0 6px 6px 0;
}

.center-content .content-list {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 0.85em;
}

.center-content .content-list li {
    margin-bottom: 5px;
    padding-left: 8px;
}

.center-content .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.center-content .tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 500;
}

/* Right Sidebar - Related Websites */
.right-sidebar {
    flex: 0 0 300px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.right-sidebar h3 {
    color: #0056b3;
    font-size: 1.2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056b3;
}

.sidebar-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links ul li {
    margin-bottom: 4px; /* Reduced from 8px to 4px */
}

.sidebar-links ul li a {
    display: block;
    padding: 6px 12px; /* Reduced from 10px 15px to 6px 12px */
    color: #343a40;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-links ul li a:hover {
    background: #0056b3;
    color: #ffffff;
    transform: translateX(-5px);
}

.sidebar-links ul li a::after {
    content: "🔗";
    position: absolute;
    right: 15px;
    opacity: 0.7;
}

/* Responsive Design for Sidebars */
@media (max-width: 768px) {
    .sidebars-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .left-sidebar,
    .right-sidebar {
        flex: none;
    }
    
    .center-content h2 {
        font-size: 1.5em;
    }
    
    .center-content p {
        font-size: 1em;
    }
}

/* Key Info Cards Section */
.info-cards { padding: 60px 0; background: #ffffff; }
.info-cards .section-title { text-align: center; font-size: 2em; margin-bottom: 40px; color: #343a40; }
.cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: #f8f9fa; border: 1px solid #dee2e6; border-radius: 8px; padding: 30px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.card .icon { font-size: 3em; color: #0056b3; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; font-size: 1.2em; }
.card a { text-decoration: none; color: inherit; }

/* --- Post Content Section --- */
.post-content-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Create Post Form Styling (sync with login) */
.create-post-section {
    max-width: 420px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 36px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid #e9ecef;
}
.create-post-section h2 {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}
.create-post-section label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 6px;
    font-size: 1em;
}
.create-post-section input[type="text"],
.create-post-section input[type="file"],
.create-post-section textarea,
.create-post-section select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    font-size: 1em;
    margin-bottom: 10px;
    background: #f8f9fa;
    transition: border 0.2s, box-shadow 0.2s;
}
.create-post-section input[type="text"]:focus,
.create-post-section input[type="file"]:focus,
.create-post-section textarea:focus,
.create-post-section select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 2px #e9f2ff;
    outline: none;
}
.create-post-section textarea {
    min-height: 90px;
    resize: vertical;
}
.create-post-section .form-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}
.create-post-section button,
.create-post-section input[type="submit"] {
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.create-post-section button:hover,
.create-post-section input[type="submit"]:hover {
    background: #003d82;
}
.create-post-section .form-error {
    color: #d32f2f;
    background: #ffeaea;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.95em;
    text-align: center;
}
.create-post-section .form-success {
    color: #388e3c;
    background: #e8f5e9;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 0.95em;
    text-align: center;
}

@media (max-width: 480px) {
    .create-post-section {
        padding: 18px 8px 14px 8px;
    }
}


/* Blog Post Cards Grid Layout */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

.blog-post-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #e9ecef;
    min-height: 340px;
    position: relative;
}
.blog-post-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    transform: translateY(-4px) scale(1.02);
}
.blog-post-card .post-title {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 12px;
    font-weight: 700;
    background: none;
    border-radius: 0;
    text-align: left;
    padding: 0;
}
.blog-post-card .post-meta {
    font-size: 0.9em;
    color: #6c757d;
    margin-bottom: 10px;
    gap: 10px;
    justify-content: flex-start;
}
.blog-post-card .content-body {
    font-size: 0.95em;
    color: #343a40;
    margin-bottom: 10px;
}
.blog-post-card .post-tags {
    margin-top: 18px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    gap: 6px;
}
.blog-post-card .tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
    transition: all 0.2s;
}
.blog-post-card .tag:hover {
    background: #0056b3;
    color: #fff;
}

@media (max-width: 900px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-post-card {
        min-height: 260px;
        padding: 20px 12px 16px 12px;
    }
}


/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.post-date {
    color: #6c757d;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
}

.post-category {
    color: #ffffff;
    background: #0056b3;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.post-title {
    font-size: 2.5em;
    color: #343a40;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    border-radius: 8px;
}
.post-header-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin: 10px 0 20px 0;
}

.post-header-inline .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,0,0,0.06);
}

.post-header-inline span {
    display: inline-block;
    background: #eef6f8;
    color: #22343b;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
}

.post-header-inline .author-name {
    font-weight: 300;
}

.post-header-inline .author-title {
    font-size: 12px;
    color: #4b6a71;
}

.post-header-inline .post-date,
.post-header-inline .post-category {
    font-size: 13px;
    color: #3b4f54;
}

@media (max-width: 720px) {
    .post-header-inline { gap: 8px; }
    .post-header-inline .author-avatar { width: 40px; height: 40px; }
}

.post-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0056b3;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #343a40;
    font-size: 1.1em;
}

.author-title {
    color: #6c757d;
    font-size: 0.9em;
}

/* Post Content */
.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-body {
    font-size: 1.1em;
    line-height: 1.8;
    color: #343a40;
}

.content-body h2 {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.content-body h3 {
    font-size: 1.4em;
    color: #343a40;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-quote {
    background: #f8f9fa;
    border-left: 4px solid #0056b3;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2em;
    color: #495057;
    border-radius: 0 8px 8px 0;
}

.content-list {
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 8px;
    margin: 25px 0;
}

.content-list li {
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.content-list li::before {
    content: "✓";
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #0056b3;
    color: #ffffff;
}

/* Responsive Design for Post Content */
@media (max-width: 768px) {
    .post-title {
        font-size: 2em;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .post-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .content-body {
        font-size: 1em;
    }
    
    .content-body h2 {
        font-size: 1.5em;
    }
    
    .content-body h3 {
        font-size: 1.2em;
    }
    
    .highlight-quote {
        padding: 15px 20px;
        font-size: 1.1em;
    }
}

/* Latest News Section */
.news-section { padding: 60px 0; background: #ffffff; }
.news-section .section-title { text-align: center; font-size: 2em; margin-bottom: 40px; color: #343a40; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-post { border: 1px solid #e9ecef; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s ease; }
.news-post:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.news-post-content { padding: 25px; }
.news-post-content h3 { margin-bottom: 10px; }

/* Statistics Section */
.stats-section { background: #0056b3; color: #ffffff; padding: 50px 0; text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-item h3 { font-size: 2.5em; margin-bottom: 5px; }
.stat-item p { font-size: 1.1em; text-transform: uppercase; letter-spacing: 1px; }

/* Footer */
footer { 
    padding: 40px 0; 
    background: #343a40; 
    color: #adb5bd; 
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px;
    padding: 18px 0;
}
.footer-left {
    margin: 0;
    text-align: left;
    padding-left: 0;
}
.footer-right {
    margin: 0;
    text-align: right;
    padding-right: 0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 14px 0;
    }
    .footer-left,
    .footer-right {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}

/* --- Teacher View Page Styles --- */
.teacher-view-body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
}

.teacher-view-body .header { 
    background: #ffffff; 
    padding: 0;
    border-bottom: 2px solid #e9ecef; 
    height: 185px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-view-body .header-content { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 40px;
    width: 1368px;
    max-width: 1368px;
    height: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.teacher-view-body .header-image {
    height: 175px;
    width: auto;
    object-fit: contain;
    max-width: none;
}

.teacher-view_body .main-nav { 
    background: #0066cc;
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: none;
}

.teacher-view-body .nav-container {
    width: 1368px;
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 10px;
}

.teacher-view-body .main-nav ul { 
    list-style: none; 
    display: flex; 
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 0;
}

.teacher-view-body .main-nav ul li a { 
    color: #ffffff;
    background: transparent;
    text-decoration: none; 
    font-weight: 500; 
    padding: 15px 30px; 
    display: block; 
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.teacher-view-body .main-nav ul li:last-child a {
    border-right: none;
}

.teacher-view-body .main-nav ul li a:hover { 
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.teacher-view-body .no-print { 
    display: block; 
}

.teacher-view-body .header-bar {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1368px;
    margin-left: auto;
    margin-right: auto;
}

.teacher-view-body .header-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.teacher-view-body .print-btn {
    background: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 500;
}

.teacher-view-body .print-btn:hover {
    background: #003d82;
}

.teacher-view-body .container {
    max-width: 1368px;
    margin: 0 auto 20px auto;
    background: white;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.teacher-view-body .section {
    margin-bottom: 25px;
}

.teacher-view-body .section-title {
    background: #d7eaff;
    color: #ff0000;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1.05em;
    margin-bottom: 15px;
    border-radius: 4px;
}

.teacher-view-body .details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.teacher-view-body .details-table td {
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-size: 1.05em;
}

.teacher-view-body .details-table td.label {
    font-weight: 600;
    width: 20%;
    background: #f8f9fa;
    color: #333;
}

.teacher-view-body .details-table td.value {
    width: 13.33%;
    color: #555;
}

.teacher-view_body .details-table.two-column td.label {
    width: 35%;
}

.teacher-view_body .details-table.two-column td.value {
    width: 65%;
}

.teacher-view-body .qualification-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.teacher-view-body .qualification-table th {
    background: #f8f9fa;
    color: #000000;
    padding: 8px;
    border: 1px solid #ddd;
    font-size: 1em;
    text-align: center;
}

.teacher-view-body .qualification-table td {
    padding: 6px 8px;
    border: 1px solid #ddd;
    font-size: 0.95em;
    text-align: center;
}

.teacher-view-body .certification {
    margin-top: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    background: white;
}

.teacher-view-body .cert-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.teacher-view-body .signatures {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.teacher-view-body .signature-line {
    padding-top: 4px;
    width: 300px;
    text-align: center;
    font-weight: 600;
}

/* Teacher View Print Styles */
@media print {
    .teacher-view-body {
        background: white;
        padding: 0;
        margin: 0;
    }
    
    .teacher-view-body .no-print {
        display: none !important;
    }
    
    .teacher-view-body header, 
    .teacher-view-body nav {
        display: block !important;
    }
    
    .teacher-view-body .header {
        background: white !important;
        border-bottom: 1px solid #999 !important;
    }
    
    .teacher-view-body .header-image {
        max-height: 100px !important;
    }
    
    .teacher-view-body .header-bar {
        display: block !important;
        text-align: center;
        padding: 8px 0 !important;
        margin: 0 !important;
        background: white !important;
        box-shadow: none !important;
    }
    
    .teacher-view-body .header-bar .header-title {
        font-size: 1.1em !important;
        font-weight: bold !important;
    }
    
    .teacher-view-body .container {
        max-width: 100%;
        box-shadow: none;
        padding: 8px;
    }
    
    .teacher-view-body .section {
        page-break-inside: avoid;
        margin-bottom: 6px;
    }
    
    .teacher-view-body .section-title {
        background: white !important;
        color: black !important;
        border: none !important;
        padding: 4px 8px !important;
        margin-bottom: 4px !important;
        font-size: 1.05em !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .teacher-view-body .details-table {
        margin-bottom: 6px !important;
    }
    
    .teacher-view-body .details-table td {
        padding: 3px 6px !important;
        font-size: 1em !important;
    }
    
    .teacher-view-body .qualification-table {
        margin-bottom: 6px !important;
    }
    
    .teacher-view-body .qualification-table th {
        padding: 3px 4px !important;
        font-size: 0.95em !important;
    }
    
    .teacher-view-body .qualification-table td {
        padding: 2px 4px !important;
        font-size: 0.9em !important;
    }
    
    .teacher-view-body .details-table td,
    .teacher-view-body .qualification-table td,
    .teacher-view_body .qualification-table th {
        border: 1px solid #999 !important;
    }
    
    .teacher-view-body .details-table td.label {
        background: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .teacher-view-body .qualification-table th {
        background: white !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .teacher-view-body .certification {
        border: 1px solid #999 !important;
        margin-top: 8px !important;
        padding: 8px !important;
        background: white !important;
    }
    
    .teacher-view-body .cert-title {
        margin-bottom: 6px !important;
        font-size: 0.95em !important;
    }
    
    .teacher-view-body .certification p {
        font-size: 1em !important;
        margin-bottom: 6px !important;
    }
    
    .teacher-view-body .signatures {
        margin-top: 20px !important;
    }
    
    .teacher-view-body .signature-line {
        font-size: 0.95em !important;
        width: 150px !important;
    }
    
    @page {
        margin: 5mm 10mm 10mm 10mm;
    }
}

/* --- Statistics Section --- */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
}

.stats-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.stat-card {
    min-width: 0;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f8f9fa;
}

.stat-sublabel {
    font-size: 0.8rem;
    color: #e9ecef;
    opacity: 0.8;
}

.stats-update {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-update p {
    font-size: 0.9rem;
    color: #e9ecef;
    opacity: 0.8;
}

.stats-update i {
    margin-right: 8px;
    color: #ffd700;
}

/* Responsive Stats Section */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .stats-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 18px 12px;
        min-height: 160px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .stat-sublabel {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 15px;
        min-height: 140px;
    }
}

/* ======================================
   SEARCH TABS STYLING - USER STATUS RIGHT ALIGNED
   ====================================== */

/* Header Section with Title and User Status on Same Row */
.search-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px 0;
    border-bottom: 2px solid #e2e8f0;
}

.search-header-section h2 {
    margin: 0;
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 700;
}

/* User Status on Right Side */
.user-status-right {
    background: #e8f5e8;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #22c55e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.user-status-right p {
    margin: 0;
    font-size: 14px;
    color: #166534;
    font-weight: 500;
}

.tab-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #e8f4fd;
}

.tab-nav {
    display: flex;
    background: #f8fafc;
    padding: 12px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
}

/* Remove old tab-nav styles since tabs are now in header */

.tab-btn {
    position: relative;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    min-width: 130px;
    background: #ffffff;
    color: #64748b;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

/* Individual Tab Colors - Simple & Clean */
.tab-btn:nth-child(1) {
    background: #fef3c7;
    color: #92400e;
    border-color: #fbbf24;
}

.tab-btn:nth-child(1):hover,
.tab-btn:nth-child(1).active {
    background: #fbbf24;
    color: #ffffff;
    border-color: #f59e0b;
}

.tab-btn:nth-child(2) {
    background: #dcfce7;
    color: #166534;
    border-color: #4ade80;
}

.tab-btn:nth-child(2):hover,
.tab-btn:nth-child(2).active {
    background: #4ade80;
    color: #ffffff;
    border-color: #22c55e;
}

.tab-btn:nth-child(3) {
    background: #e0e7ff;
    color: #3730a3;
    border-color: #8b5cf6;
}

.tab-btn:nth-child(3):hover,
.tab-btn:nth-child(3).active {
    background: #8b5cf6;
    color: #ffffff;
    border-color: #7c3aed;
}

.tab-btn:nth-child(4) {
    background: #fce7f3;
    color: #be185d;
    border-color: #f472b6;
}

.tab-btn:nth-child(4):hover,
.tab-btn:nth-child(4).active {
    background: #f472b6;
    color: #ffffff;
    border-color: #ec4899;
}

.tab-btn:nth-child(5) {
    background: #cffafe;
    color: #155e75;
    border-color: #22d3ee;
}

.tab-btn:nth-child(5):hover,
.tab-btn:nth-child(5).active {
    background: #22d3ee;
    color: #ffffff;
    border-color: #06b6d4;
}

.tab-btn:nth-child(6) {
    background: #fee2e2;
    color: #dc2626;
    border-color: #f87171;
}

.tab-btn:nth-child(6):hover,
.tab-btn:nth-child(6).active {
    background: #f87171;
    color: #ffffff;
    border-color: #ef4444;
}

/* Active Tab Styling */
.tab-btn.active {
    transform: translateY(-1px);
    font-weight: 600;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Tab Content Styling */
.tab-content {
    display: none;
    padding: 30px;
    background: #ffffff;
    border-radius: 0 0 15px 15px;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animation for tab content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple icons for tabs */
.tab-btn:nth-child(1)::before {
    content: "🏛️ ";
    font-size: 14px;
    margin-right: 4px;
}

.tab-btn:nth-child(2)::before {
    content: "👔 ";
    font-size: 14px;
    margin-right: 4px;
}

.tab-btn:nth-child(3)::before {
    content: "📍 ";
    font-size: 14px;
    margin-right: 4px;
}

.tab-btn:nth-child(4)::before {
    content: "🏫 ";
    font-size: 14px;
    margin-right: 4px;
}

.tab-btn:nth-child(5)::before {
    content: "🔗 ";
    font-size: 14px;
    margin-right: 4px;
}

.tab-btn:nth-child(6)::before {
    content: "🌟 ";
    font-size: 14px;
    margin-right: 4px;
}

/* Removed heavy pulse animation for lighter feel */

/* Responsive Design */
@media (max-width: 1024px) {
    .search-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .search-header-section h2 {
        font-size: 1.6rem;
    }
    
    .user-status-right {
        align-self: stretch;
        text-align: center;
    }
    
    .user-status-right p {
        font-size: 13px;
    }
    
    .tab-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 8px 15px;
    }
    
    .tab-btn {
        min-width: 110px;
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .search-header-section {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 10px 0;
    }
    
    .search-header-section h2 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .user-status-right p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .tab-nav {
        flex-wrap: nowrap;
        gap: 4px;
        padding: 6px 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-container {
        margin: 15px 0;
        border-radius: 12px;
    }
    
    .tab-btn {
        min-width: 95px;
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .search-header-section h2 {
        font-size: 1.2rem;
    }
    
    .user-status-right {
        padding: 6px 10px;
    }
    
    .user-status-right p {
        font-size: 11px;
        word-break: break-word;
    }
    
    .tab-nav {
        gap: 3px;
    }
    
    .tab-btn {
        min-width: 75px;
        padding: 6px 10px;
        font-size: 11px;
        letter-spacing: 0.1px;
    }
    
    .tab-btn::before {
        display: none;
    }
}

/* --- Navigation User Info --- */
.nav-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
    font-weight: 500;
    color: #fff;
    margin-left: 20px;
    background: none;
    padding: 0;
}
.nav-user-name, .nav-user-type, .nav-session-timer {
    font-size: 0.95em;
    margin-right: 4px;
    font-weight: 600;
}
.nav-logout-btn {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 0.92em;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
}
.nav-logout-btn:hover {
    background: #b71c1c;
}

/* --- Header Footer Info --- */
.header-footer-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    font-size: 1em;
    color: #343a40;
    background: none;
    margin-bottom: 0;
}
.header-footer-left {
    text-align: left;
    font-weight: 500;
}
.header-footer-right {
    text-align: right;
    font-weight: 500;
}
@media (max-width: 768px) {
    .header-footer-info {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 0 4px;
    }
}