
        /* Classic LMS Page Styles */
        :root {
            --classic-blue: #1a365d;
            --navy-blue: #0a1931;
            --royal-blue: #1e3d8f;
            --gold: #d4af37;
            --cream: #f5f0e6;
            --ivory: #fffef7;
            --brown: #8b4513;
            --light-brown: #a0522d;
        }

        body {
            background-color: var(--ivory);
            font-family: 'Georgia', 'Times New Roman', serif;
            color: #333;
            line-height: 1.6;
        }

        /* Hero Section */
        .lms-hero {
            background: linear-gradient(rgba(10, 25, 49, 0.85), rgba(10, 25, 49, 0.9)),
                        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
            border-bottom: 8px solid var(--gold);
        }

        .lms-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(26, 54, 93, 0.7);
            border-radius: 8px;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .lms-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Times New Roman', serif;
        }

        .lms-hero p {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            font-style: italic;
        }

        .hero-divider {
            width: 100px;
            height: 3px;
            background: var(--gold);
            margin: 2rem auto;
            border-radius: 2px;
        }

        /* Classic Container */
        .classic-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Classic Section Styling */
        .classic-section {
            padding: 5rem 0;
            position: relative;
        }

        .classic-section:nth-child(even) {
            background: linear-gradient(to right, var(--cream) 0%, #f8f5ee 100%);
            border-top: 2px solid var(--gold);
            border-bottom: 2px solid var(--gold);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--classic-blue);
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--light-brown);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Classic Cards */
        .classic-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .classic-card {
            background: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e0d6c2;
            position: relative;
        }

        .classic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: var(--gold);
        }

        .card-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .classic-card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--classic-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .card-content {
            padding: 2rem;
        }

        .card-content h3 {
            font-size: 1.5rem;
            color: var(--classic-blue);
            margin-bottom: 1rem;
            font-weight: 600;
            border-bottom: 2px solid #f0e6d2;
            padding-bottom: 10px;
        }

        .card-content p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .classic-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--classic-blue);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

        .classic-btn:hover {
            background: var(--gold);
            color: var(--classic-blue);
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        /* Classic Features */
        .classic-features {
            background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
            position: relative;
            padding: 6rem 0;
        }

        .classic-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 25, 49, 0.85);
        }

        .features-content {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 800px;
            margin: 0 auto;
        }

        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 4px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .feature-item p {
            color: #ddd;
            line-height: 1.6;
        }

        /* Classic Steps */
        .classic-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .step {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #e8e1d1;
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: var(--classic-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--classic-blue);
            margin: 1.5rem 0 1rem 0;
        }

        .step h3 {
            font-size: 1.3rem;
            color: var(--classic-blue);
            margin-bottom: 1rem;
        }

        .step p {
            color: #666;
            line-height: 1.7;
        }

        /* Classic Quote */
        .classic-quote {
            background: linear-gradient(rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.95)),
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 4rem 0;
            text-align: center;
            color: white;
            border-top: 4px solid var(--gold);
            border-bottom: 4px solid var(--gold);
        }

        .quote-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }

        .quote-text {
            font-size: 1.5rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #f0f0f0;
        }

        .quote-author {
            color: var(--gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Classic Info Box */
        .classic-info-box {
            background: var(--classic-blue);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .info-box-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .info-box-content h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }

        .info-box-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .info-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--classic-blue);
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
        }

        .info-btn:hover {
            background: transparent;
            color: var(--gold);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lms-hero h1 {
                font-size: 2.2rem;
            }

            .lms-hero p {
                font-size: 1.1rem;
            }

            .classic-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .features-list {
                grid-template-columns: 1fr;
            }

            .classic-steps {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .quote-text {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .lms-hero h1 {
                font-size: 1.8rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .classic-card {
                margin: 0 1rem;
            }
        }
  