        :root {
            --college-purple-primary: #611F69;
            --college-purple-dark: #4A0D66;
            --college-purple-medium: #8253C2;
            --college-purple-light: #F3F1FF;
            --college-purple-very-light: #F8F6FE;
            --college-pink-light: #FDE2E4;
            --college-red-accent: #F45346;
            --college-text-primary: #1D1D1F;
            --college-text-secondary: #4A4A4A;
            --college-text-light: #6E6E73;
            --college-bg-white: #FFFFFF;
            --college-bg-section: #F8F6FE;
            --college-border-light: #E5E7EB;
            --college-shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
            --college-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --college-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Urbanist', sans-serif; color: var(--college-text-primary); background-color: var(--college-bg-white); overflow-x: hidden; line-height: 1.6; }

        .college-container { max-width: 1250px; margin: 0 auto; padding: 0 1.5rem; }
        .college-container-narrow { max-width: 1150px; margin: 0 auto; padding: 0 1.5rem; }
        .college-section { padding: 5rem 0; }

        .college-section-title {
            font-size: 2.25rem; font-weight: 700; text-align: center; margin-bottom: 1rem;
            background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%);
            background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        
        .college-section-subtitle { text-align: center; font-size: 1.125rem; color: var(--college-text-secondary); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto;}
        
        .college-btn { display: inline-block; padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; text-align: center; border: none; cursor: pointer; }
        .college-btn-primary { background-color: var(--college-purple-primary); color: white; box-shadow: 0 4px 14px rgba(97, 31, 105, 0.3); }
        .college-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(97, 31, 105, 0.4); }

        .college-animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .college-animate.college-visible { opacity: 1; transform: translateY(0); }

        .college-hero { padding-top: 6rem; padding-bottom: 4rem; }
        .college-hero-box {
            background: linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%);
            border-radius: 35px; padding: 4rem; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        
        .hero-floating-icon {
            position: absolute;
            width: 60px; height: 60px;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            color: var(--college-purple-primary);
            font-size: 1.5rem;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }
        .icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
        .icon-2 { bottom: 20%; right: 10%; animation-delay: 2s; }
        .icon-3 { top: 20%; right: 20%; width: 40px; height: 40px; font-size: 1rem; animation-delay: 4s; }
        .icon-4 { bottom: 30%; left: 8%; width: 45px; height: 45px; font-size: 1.1rem; animation-delay: 1s; }
        .icon-5 { top: 35%; right: 8%; width: 50px; height: 50px; font-size: 1.2rem; animation-delay: 3s; }
        .icon-6 { bottom: 15%; left: 25%; width: 38px; height: 38px; font-size: 0.95rem; animation-delay: 5s; }
        .icon-7 { top: 10%; right: 35%; width: 42px; height: 42px; font-size: 1rem; animation-delay: 2.5s; }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        .hero-tag {
            display: inline-block; background: white; padding: 0.5rem 1.5rem; border-radius: 50px;
            font-weight: 700; color: var(--college-purple-primary); margin-bottom: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: relative; z-index: 2;
        }

        .college-hero-text { position: relative; z-index: 2; }
        .college-hero-text h1 {
            font-size: 3.2rem; line-height: 1.2; font-weight: 600; margin-bottom: 1rem;
            background: linear-gradient(87deg, #8253C2 2.38%, #F45346 85.76%);
            background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        
        .hero-stats {
            display: flex; gap: 3rem; justify-content: center;
            margin-top: 2.5rem; padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .stat-item { text-align: center; }
        .stat-number { display: block; font-size: 1.5rem; font-weight: 800; color: var(--college-purple-dark); }
        .stat-label { font-size: 0.85rem; color: var(--college-text-secondary); text-transform: uppercase; letter-spacing: 1px; }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .ebook-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--college-shadow-md);
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .ebook-card:hover { transform: translateY(-5px); box-shadow: var(--college-shadow-lg); }
        
        .book-cover-wrap { 
            position: relative; 
            height: 300px; 
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .book-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }

        .pdf-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .download-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(97, 31, 105, 0.6);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s ease;
        }
        .ebook-card:hover .download-overlay { opacity: 1; }
        .download-btn-icon { color: white; font-size: 3rem; }

        .book-details { padding: 1.5rem; flex-grow: 1; }
        .book-category { font-size: 0.85rem; color: var(--college-purple-medium); font-weight: 700; margin-bottom: 0.5rem; display: block; text-transform: uppercase; }
        .book-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; color: var(--college-text-primary); }
        .book-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--college-text-light); margin-bottom: 1rem; }
        .book-meta i { margin-right: 4px; }

        .linkedin-card {
            background: white; border-radius: 16px; overflow: hidden;
            box-shadow: var(--college-shadow-md); border: 1px solid var(--college-border-light);
            display: flex; flex-direction: column; height: 100%;
        }
        .li-header { padding: 1rem; display: flex; align-items: center; border-bottom: 1px solid #f3f3f3; }
        .li-avatar { width: 48px; height: 48px; border-radius: 50%; margin-right: 12px; }
        .li-info { flex: 1; }
        .li-name { font-weight: 700; font-size: 0.95rem; color: #000; display: block; }
        .li-title { font-size: 0.75rem; color: #666; display: block; }
        .li-icon { color: #0077b5; font-size: 1.2rem; }
        .li-content { padding: 1rem; flex: 1; font-size: 0.9rem; }
        .li-footer { padding: 0.75rem 1rem; background: #f9f9f9; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

        .spotlight-box {
            display: flex; background: var(--college-purple-very-light);
            border-radius: 30px; overflow: hidden; align-items: center;
            box-shadow: var(--college-shadow-lg);
        }
        .spotlight-img { flex: 1; height: 450px; background: #eee; }
        .spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
        .spotlight-content { flex: 1; padding: 4rem; }
        .spotlight-badge { background: var(--college-purple-primary); color: white; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 1rem; display: inline-block; }
        
        .video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 20px; overflow: hidden; background: #000; }
        .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

        .ebook-modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .ebook-modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .ebook-modal {
            background: white;
            border-radius: 24px;
            padding: 2.5rem;
            width: 90%;
            max-width: 560px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        .ebook-modal-overlay.active .ebook-modal {
            transform: translateY(0);
        }

        .ebook-modal-close {
            position: absolute;
            top: 1rem; right: 1rem;
            background: none;
            border: none;
            font-size: 1.25rem;
            color: var(--college-text-light);
            cursor: pointer;
            width: 36px; height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        .ebook-modal-close:hover {
            background: var(--college-purple-light);
            color: var(--college-purple-primary);
        }

        .ebook-modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--college-text-primary);
            margin-bottom: 0.25rem;
        }
        .ebook-modal-subtitle {
            font-size: 0.95rem;
            color: var(--college-purple-medium);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .ebook-toggle-wrap {
            display: flex;
            justify-content: center;
            margin-bottom: 1.75rem;
        }
        .ebook-toggle {
            display: flex;
            position: relative;
            background: var(--college-purple-light);
            border-radius: 50px;
            padding: 4px;
            width: 280px;
        }
        .ebook-toggle-btn {
            flex: 1;
            padding: 0.6rem 1rem;
            border: none;
            background: none;
            font-family: 'Urbanist', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--college-text-secondary);
            cursor: pointer;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
            border-radius: 50px;
        }
        .ebook-toggle-btn.active {
            color: white;
        }
        .ebook-toggle-slider {
            position: absolute;
            top: 4px;
            left: 0;
            width: 50%;
            height: calc(100% - 8px);
            background: var(--college-purple-primary);
            border-radius: 50px;
            transition: left 0.3s ease;
            z-index: 1;
        }

        .ebook-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .ebook-form-group {
            margin-bottom: 1rem;
        }
        .ebook-form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--college-text-primary);
            margin-bottom: 0.4rem;
        }
        .ebook-form-group label span {
            color: var(--college-red-accent);
        }
        .ebook-form-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1.5px solid var(--college-border-light);
            border-radius: 12px;
            font-family: 'Urbanist', sans-serif;
            font-size: 0.9rem;
            color: var(--college-text-primary);
            transition: border-color 0.2s ease;
            outline: none;
        }
        .ebook-form-group input:focus {
            border-color: var(--college-purple-primary);
            box-shadow: 0 0 0 3px rgba(97, 31, 105, 0.1);
        }
        .ebook-form-group input::placeholder {
            color: #bbb;
        }

        .ebook-submit-btn {
            width: 100%;
            padding: 0.9rem;
            margin-top: 0.5rem;
            font-size: 1rem;
        }

        @media (max-width: 480px) {
            .ebook-modal { padding: 1.75rem; }
            .ebook-form-row { grid-template-columns: 1fr; }
            .ebook-toggle { width: 100%; }
        }

        @media (max-width: 1024px) {
            .stories-grid { grid-template-columns: repeat(2, 1fr); }
            .college-hero-text h1 { font-size: 2.5rem; }
        }
        @media (max-width: 768px) {
            .stories-grid { grid-template-columns: 1fr; }
            .college-hero-box { padding: 2rem; }
            .hero-floating-icon { display: none; }
            .spotlight-box { flex-direction: column; }
            .spotlight-img { height: 300px; width: 100%; }
            .spotlight-content { padding: 2rem; }
        }