    /* --- General Styles --- */
    body {
        color: rgba(33, 37, 41, 1);
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 16px;
        margin: 0;
        padding: 0;
        height: 100%;
        flex-direction: column;
    }

    .page-container {
        flex-grow: 1;
    }

    /* --- Header Styles --- */
    header {
        background-color: rgb(255, 205, 169);
        padding: .4rem 0 0;
    }

    .menu {
        padding: .4rem 2rem;
    }

    .menu .logo {
        display: flex;
        float: left;
        margin: 11px auto;
        align-items: center;
    }

    .menu .logo img {
        margin-right: 10px;
        margin-bottom: 10px;
        height: 40px;
    }

    header .menu-toggle {
        display: none;
        float: right;
        font-size: 2rem;
        height: 40px;
        font-weight: bold;
    }

    header .menu-toggle button {
        background-color: rgba(221, 72, 20, .6);
        border: none;
        border-radius: 3px;
        color: rgba(255, 255, 255, 1);
        cursor: pointer;
        font: inherit;
        font-size: 1.3rem;
        height: 36px;
        padding: 0;
        margin: 11px 0;
        overflow: visible;
        width: 40px;
    }

    header .menu-toggle button:hover,
    header .menu-toggle button:focus {
        background-color: rgba(221, 72, 20, .8);
        color: rgba(255, 255, 255, .8);
    }

    /* --- Post Action Styles --- */
    .post-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .create-post-btn {
        background-color: #007BFF;
        color: white;
        padding: 10px 15px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        border-radius: 5px;
    }

    .create-post-btn:hover {
        background-color: #0056b3;
    }

    /* --- Table Styles --- */
    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        text-align: left;
        padding: 8px;
        border: 1px solid #ddd;
    }

    th {
        background-color: #f2f2f2;
    }

    /* --- Footer Styles --- */
    footer {
        display: block;
        left: 0;
        bottom: 0;
        width: 100%;
        color: white;
        text-align: center;
        padding: 1rem 0;
        position: relative;
    }

    .footer-main {
        background-color: #0f172a;
        color: #94a3b8;
        padding: 60px 0 20px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-heading {
        color: #f8fafc;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
    }

    .footer-heading::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background-color: #3b82f6;
        margin-top: 8px;
        transition: width 0.3s;
    }

    .footer-col:hover .footer-heading::after {
        width: 100%;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-link {
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-link:hover {
        color: #3b82f6;
        padding-left: 5px;
        text-decoration: none;
    }

    .footer-social a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        transition: 0.3s;
        text-decoration: none;
    }

    .footer-social a:hover {
        background-color: #3b82f6;
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 40px;
        font-size: 0.9rem;
    }

    /* --- FAQ Styles --- */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq-item {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    }

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        border-color: #cbd5e1;
    }

    .icon-wrapper {
        width: 24px;
        height: 24px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        transition: color 0.3s ease;
    }

    .icon-chevron {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }


    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }


    .faq-answer-inner {
        padding: 0.25rem 2.5rem 1rem 2.5rem; 
        color: #475569;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .faq-item.active .faq-answer-inner {
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-custom {
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .navbar-custom.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 0.7rem 0;
        background-color: rgba(255, 255, 255, 0.98);
    }

    .navbar-brand img {
        transition: transform 0.3s;
    }

    .navbar-brand:hover img {
        transform: scale(1.05);
    }

    /* --- Nav Links --- */
    .nav-link-custom {
        font-weight: 600;
        color: #475569;
        margin: 0 10px;
        font-size: 0.95rem;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-link-custom i {
        font-size: 0.9em;
        margin-right: 4px;
        color: #94a3b8;
        transition: color 0.3s;
    }

    .nav-link-custom:hover {
        color: #4f46e5;
    }

    .nav-link-custom:hover i {
        color: #4f46e5;
    }

    /* --- Dropdown Menu --- */
    .dropdown-menu-custom {
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-radius: 12px;
        padding: 10px;
        margin-top: 10px;
        animation: fadeIn 0.2s ease-in-out;
    }

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

    .dropdown-item-custom {
        border-radius: 8px;
        padding: 12px 16px;
        color: #334155;
        transition: all 0.2s;
    }

    .dropdown-item-custom:hover {
        background-color: #f1f5f9;
        color: #4f46e5;
        transform: translateX(2px);
    }

    .dropdown-item-custom strong {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .dropdown-item-custom small {
        color: #94a3b8;
        font-size: 0.75rem;
        line-height: 1.2;
        display: block;
    }

    /* --- Buttons --- */
    .btn-login {
        background-color: #4f46e5;
        color: white;
        padding: 8px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
        box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
    }

    .btn-login:hover {
        background-color: #4338ca;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(79, 70, 229, 0.3);
        color: white;
    }

    .btn-logout {
        color: #ef4444;
    }

    .btn-logout:hover {
        color: #dc2626;
        background-color: #fef2f2;
    }

    /* --- Toast Styles --- */
    .toast-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
        width: auto;
        max-width: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toast {
        background-color: #28a745;
        color: white;
        border-radius: 15px;
        padding: 25px 30px;
        font-size: 18px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        animation: slideIn 0.8s ease-out, scaleIn 0.5s ease-in forwards;
    }

    .toast-header {
        background-color: #218838;
        color: black;
        font-weight: bold;
        border-bottom: 1px solid white;
        padding-bottom: 10px;
    }

    .toast-body {
        color: black;
        padding-top: 10px;
        font-size: 16px;
    }

    /* --- Footer Social Icons (Optimized for 3) --- */
    .footer-social-icons {
        display: flex;
        gap: 20px; 
        justify-content: center;

    }

    .social-icon-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .social-icon-btn:hover {
        background-color: #75d3e4; /* Your primary custom color */
        color: #0f172a; /* Dark text on hover */
        transform: translateY(-3px); /* Lift effect */
        text-decoration: none;
    }

    @keyframes slideIn {
        0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
        100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    }

    @keyframes scaleIn {
        0% { transform: scale(0); }
        100% { transform: scale(1); }
    }
