* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-red: #d32f2f;
        --dark-red: #b71c1c;
        --light-red: #ef5350;
        --text-color: #333;
        --text-light: #777;
        --bg-color: #ffffff;
        --bg-light: #f9f9f9;
        --white: #ffffff;
        --black: #000000;
        --border-color: #e0e0e0;
    }

    body {
        font-family: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--bg-color);
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', 'Segoe UI', sans-serif; /* Assuming a sans-serif for headers */
        font-weight: 700;
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    ul {
        list-style: none;
    }

    /* Container */
    .container {
        max-width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar {
        background-color: var(--primary-red);
        color: var(--white);
        padding: 10px 0;
        font-size: 0.85rem;
    }

    .top-bar-content {
        max-width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-left {
        display: flex;
        gap: 20px;
    }

    .top-bar-left span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top-bar-right .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        color: var(--white);
        font-size: 0.9rem;
    }

    .social-icons a:hover {
        opacity: 0.8;
    }

    /* Navigation */
    header {
        background-color: rgba(0, 0, 0, 0.8); /* Dark background as seen in image */
        color: var(--white);
        position: relative; /* Or absolute/fixed if sticky */
        z-index: 1000;
    }

    nav {
        max-width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .navbar-logo {
        height: 150px;
        width: auto;
        object-fit: contain;
    }

    .logo span {
        font-size: 1.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .nav-links {
        display: flex;
        gap: 25px;
        align-items: center;
    }

    .nav-extra-logos {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-extra-logos img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }

    .nav-links li a {
        color: var(--white);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-links li a:hover {
        color: var(--primary-red);
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        color: var(--white);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 20px;
        max-width: 800px;
    }

    .hero h1 .highlight {
        color: var(--primary-red);
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        max-width: 600px;
        opacity: 0.9;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 30px;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        border: 2px solid transparent;
        cursor: pointer;
        text-align: center;
    }

    .btn-primary {
        background-color: var(--primary-red);
        color: var(--white);
        border-color: var(--primary-red);
    }

    .btn-primary:hover {
        background-color: var(--dark-red);
        border-color: var(--dark-red);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-secondary:hover {
        background-color: var(--white);
        color: var(--text-color);
    }

    .btn-white {
        background-color: var(--white);
        color: var(--text-color);
        border-color: var(--white);
    }

    .btn-white:hover {
        background-color: #f0f0f0;
        border-color: #f0f0f0;
    }

    .btn-transparent {
        background-color: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-transparent:hover {
        background-color: var(--white);
        color: var(--primary-red);
    }

    /* Red CTA Section */
    .red-cta {
        background-color: var(--primary-red);
        color: var(--white);
        padding: 60px 0;
    }

    .cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .cta-text {
        flex: 1;
    }

    .cta-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .cta-text p {
        font-size: 1rem;
        opacity: 0.9;
        max-width: 800px;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
    }

    /* Services Section */
    .services-section {
        padding: 80px 0;
        text-align: center;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--text-color);
    }

    .section-header p {
        max-width: 700px;
        margin: 0 auto 20px;
        color: var(--text-light);
    }

    .wavy-line-dark {
        width: 60px;
        height: 5px;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 5 0 10 10 T 20 10' fill='none' stroke='%23333' stroke-width='2'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
        margin: 0 auto;
        opacity: 0.5;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-item {
        padding: 40px 20px;
        border: 1px solid #eee;
        transition: all 0.3s ease;
    }

    .service-item:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .service-item img.faculty-photo {
        width: 140px;
        height: 160px;
        border-radius: 12px;
        object-fit: cover;
        object-position: top center;
        margin-bottom: 18px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    }

    .service-item h3 {
        font-size: 1rem;
        color: var(--text-color);
        font-weight: 700;
        margin-bottom: 6px;
    }

    .service-item p {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    /* Researchers grid */
    .researchers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 24px;
    }

    .researcher-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 16px 22px;
        border: 1px solid #eee;
        border-radius: 12px;
        transition: box-shadow 0.25s ease, transform 0.25s ease;
        background: #fff;
    }

    .researcher-card:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,0.09);
        transform: translateY(-4px);
    }

    .researcher-avatar {
        width: 80px;
        height: 80px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: 1px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.18);
        background-image: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.1) 100%);
        background-blend-mode: overlay;
    }

    .researcher-name {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--text-color);
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .researcher-role {
        font-size: 0.78rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .service-item i {
        font-size: 3rem;
        color: var(--text-light); /* Or adjust to match image, icons look grey/outline */
        margin-bottom: 20px;
        stroke-width: 1px;
    }

    .service-item h3 {
        font-size: 1.2rem;
        color: var(--text-light);
        font-weight: 600;
    }

    /* About Section */
    .about-section {
        padding: 80px 0;
        background-color: var(--bg-light);
    }

    .about-grid {
        max-width: 1170px;
        margin: 0 auto;
        padding: 0 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .about-left .subtitle {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .about-left h2 {
        font-size: 2.5rem;
        color: var(--text-color);
        line-height: 1.3;
    }

    .about-right p {
        margin-bottom: 20px;
        color: var(--text-light);
    }

    /* Contact Section */
    .contact-section {
        padding: 70px 0 90px;
    }

    .contact-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .contact-section p.contact-subtitle {
        text-align: center;
        color: var(--text-light);
        margin-bottom: 30px;
    }

    .contact-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 10px;
    }

    .contact-card {
        background-color: var(--white);
        border-radius: 16px;
        padding: 24px 22px 28px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .contact-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background-color: rgba(211, 47, 47, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-red);
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-card p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* Featured Project Section */
    .featured-project-section {
        background-color: var(--primary-red);
        color: var(--white);
        padding: 80px 0 120px; /* Extra padding bottom for overlap if needed */
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .featured-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Add subtle pattern */
        background-image: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.05) 75%, transparent 75%, transparent);
        background-size: 20px 20px;
    }

    .featured-header {
        position: relative;
        z-index: 1;
        margin-bottom: 60px;
    }

    .featured-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .featured-header p {
        max-width: 700px;
        margin: 0 auto 20px;
        opacity: 0.9;
    }

    .wavy-line-light {
        width: 60px;
        height: 5px;
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 5 0 10 10 T 20 10' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
        margin: 0 auto;
        opacity: 0.8;
    }

    .featured-content-box {
        display: flex;
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        text-align: left;
    }

    .featured-image-placeholder {
        flex: 1;
        background-color: #e0e0e0; /* Placeholder grey */
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .placeholder-content {
        text-align: center;
        color: #555;
    }

    .placeholder-content i {
        font-size: 4rem;
        margin-bottom: 10px;
        display: block;
    }

    .finance-icons {
        margin-top: 20px;
        font-size: 2rem;
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .featured-text-card {
        flex: 1;
        background-color: var(--white);
        color: var(--text-color);
        padding: 50px;
        margin-left: -50px; /* Overlap */
        margin-top: 50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        align-self: center;
    }

    .featured-text-card h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .featured-text-card p {
        color: var(--text-light);
        margin-bottom: 30px;
    }

    /* Footer */
    footer {
        background-color: #222;
        color: var(--white);
        padding: 20px 0;
        text-align: center;
        font-size: 0.9rem;
    }

    /* Skills section in register */
    .skills-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .skill-row {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(211, 47, 47, 0.03);
        border: 1px solid rgba(211, 47, 47, 0.14);
        border-radius: 10px;
        padding: 12px 14px;
    }

    .skill-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        border-radius: 50%;
        background: var(--primary-red);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .skill-inputs {
        display: flex;
        flex: 1;
        gap: 10px;
        flex-wrap: wrap;
    }

    .skill-inputs input {
        flex: 2;
        min-width: 140px;
        border: 1px solid rgba(211, 47, 47, 0.22) !important;
        border-radius: 8px !important;
        padding: 9px 12px !important;
        font-size: 0.9rem;
        background: #fff !important;
    }

    .skill-inputs select {
        flex: 1;
        min-width: 130px;
        border: 1px solid rgba(211, 47, 47, 0.22) !important;
        border-radius: 8px !important;
        padding: 9px 10px !important;
        font-size: 0.9rem;
        background: #fff !important;
        cursor: pointer;
    }

    .skill-inputs input:focus,
    .skill-inputs select:focus {
        outline: none !important;
        border-color: rgba(211, 47, 47, 0.55) !important;
        box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12) !important;
    }

    @media (max-width: 480px) {
        .skill-inputs {
            flex-direction: column;
        }
        .skill-inputs input,
        .skill-inputs select {
            min-width: 0;
            width: 100%;
        }
    }

    /* =====================
       RESPONSIVE / MOBILE
       ===================== */

    /* Burger button — hidden on desktop */
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        z-index: 1100;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    /* Animate burger → X when open */
    .burger.burger-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.burger-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .burger.burger-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 900px) {
        nav {
            height: auto;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            padding: 10px 15px;
            position: relative;
        }

        /* Logo takes available space, burger stays right */
        .logo {
            flex: 1;
            gap: 8px;
        }

        .nav-extra-logos {
            gap: 6px;
        }

        .nav-extra-logos img {
            height: 34px !important;
            width: 34px !important;
        }

        .nav-extra-logos img:nth-child(3) {
            height: 40px !important;
            width: 40px !important;
        }

        .navbar-logo {
            height: 60px !important;
        }

        /* Show burger on mobile — stays right of logo */
        .burger {
            display: flex;
            flex-shrink: 0;
        }

        /* Nav links drop below full width */
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            background: rgba(20, 20, 20, 0.97);
            padding: 6px 0 14px;
            gap: 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            order: 3; /* pushes below the logo+burger row */
        }

        .nav-links.nav-open {
            display: flex;
            animation: slideDown 0.2s ease;
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links li a {
            display: block;
            padding: 12px 20px;
            font-size: 0.85rem;
            letter-spacing: 1px;
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .nav-links li a:hover {
            background: rgba(255,255,255,0.06);
            color: var(--light-red);
        }

        .nav-links li a.btn {
            margin: 8px 20px 0;
            width: calc(100% - 40px);
            text-align: center;
            border-radius: 4px;
            padding: 10px 20px;
        }

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

    @media (max-width: 768px) {
        /* Top bar */
        .top-bar-content {
            flex-direction: column;
            gap: 6px;
            text-align: center;
        }

        /* Hero */
        .hero {
            height: auto;
            min-height: 420px;
            padding: 60px 0 50px;
        }

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 14px;
        }

        .hero p {
            font-size: 0.95rem;
            margin-bottom: 28px;
        }

        .hero-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .hero-buttons .btn {
            width: 100%;
            text-align: center;
        }

        /* CTA section */
        .cta-content {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .cta-text h2 {
            font-size: 1.4rem;
        }

        .cta-buttons {
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* About grid */
        .about-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .about-left h2 {
            font-size: 1.8rem;
        }

        /* Contact cards */
        .contact-cards {
            grid-template-columns: 1fr;
        }

        /* Featured project */
        .featured-content-box {
            flex-direction: column;
            margin-left: 0;
        }

        .featured-text-card {
            margin-left: 0;
            margin-top: 0;
            padding: 30px 20px;
        }

        /* Dashboard */
        .dashboard-header {
            padding: 1.2rem;
        }

        .dashboard-header h1 {
            font-size: 1.4rem;
        }

        .dashboard-stats {
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .dashboard-content {
            grid-template-columns: 1fr;
        }

        /* Cards */
        .card {
            padding: 1.2rem;
        }

        .card h2 {
            font-size: 1.3rem;
        }

        /* Tables: make scrollable */
        .card table,
        .container table {
            display: block;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }

        /* Login split layout */
        .login-split {
            grid-template-columns: 1fr !important;
        }

        .login-right {
            min-height: 200px;
        }

        /* Register grid */
        .register-grid {
            grid-template-columns: 1fr !important;
        }

        /* Buttons full width in forms */
        .login-form .btn,
        .register-grid .btn {
            width: 100%;
        }

        /* General section padding reduction */
        .services-section,
        .about-section,
        .contact-section,
        .featured-project-section {
            padding: 50px 0;
        }

        .section-header h2,
        .featured-header h2 {
            font-size: 1.8rem;
        }

        /* Question charts grid */
        .question-charts-grid {
            grid-template-columns: 1fr !important;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 1.6rem;
        }

        .dashboard-stats {
            grid-template-columns: 1fr;
        }

        .btn {
            padding: 10px 18px;
            font-size: 0.8rem;
        }

        .login-shell,
        .register-shell {
            padding: 20px 12px;
        }

        .register-card,
        .login-left {
            padding: 20px 16px !important;
        }
    }

    /* Restored Form Styles */
    .form-container {
        max-width: 500px;
        margin: 3rem auto;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-color);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 11px 12px;
        border: 1px solid rgba(211, 47, 47, 0.22);
        border-radius: 8px;
        font-size: 0.95rem;
        font-family: inherit;
        background: linear-gradient(180deg, #fff, rgba(239, 83, 80, 0.03));
        transition: border-color 0.25s, box-shadow 0.25s;
        color: var(--text-color);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: rgba(211, 47, 47, 0.55);
        box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.12);
    }

    .form-group input:disabled {
        background: #f5f5f5;
        cursor: not-allowed;
        color: #999;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group small {
        display: block;
        margin-top: 0.5rem;
        color: #888;
        font-size: 0.82rem;
    }

    .error-message {
        background-color: #fee;
        color: var(--primary-red);
        padding: 1rem;
        margin-bottom: 1rem;
        border-left: 4px solid var(--primary-red);
    }

    .success-message {
        background-color: #d4edda;
        color: #28a745;
        padding: 1rem;
        margin-bottom: 1rem;
        border-left: 4px solid #28a745;
    }

    /* Restored Dashboard Styles */
    .dashboard-header {
        background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
        color: var(--white);
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .dashboard-header h1 {
        margin-bottom: 0.5rem;
    }

    .dashboard-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-card {
        background: var(--white);
        padding: 1.5rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-left: 4px solid var(--primary-red);
    }

    .stat-card h3 {
        color: var(--primary-red);
        margin-bottom: 0.5rem;
    }

    .stat-card .stat-value {
        font-size: 2rem;
        font-weight: bold;
        color: var(--primary-red);
    }

    .dashboard-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .dashboard-menu {
        list-style: none;
        padding: 0;
    }

    .dashboard-menu li {
        margin-bottom: 0.5rem;
    }

    .dashboard-menu a {
        display: block;
        padding: 1rem;
        background: var(--white);
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s;
        border-left: 4px solid transparent;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .dashboard-menu a:hover {
        background: #f0f0f0;
        border-left-color: var(--primary-red);
        transform: translateX(5px);
    }

    /* Restored Card Styles */
    .card {
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 2rem;
    }

    .card h2 {
        color: var(--primary-red);
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }