        :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; }
        .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; }

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

        .community-format-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--college-shadow-md);
            border: 1px solid var(--college-border-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .community-format-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--college-shadow-lg);
        }

        .format-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--college-purple-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--college-purple-primary);
            margin-bottom: 1.25rem;
        }

        .community-format-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--college-text-primary);
        }

        .community-format-card p {
            font-size: 0.95rem;
            color: var(--college-text-secondary);
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        .format-frequency {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--college-purple-medium);
            background: var(--college-purple-light);
            padding: 6px 14px;
            border-radius: 20px;
        }

        .section-badge {
            display: inline-block;
            background: var(--college-purple-light);
            color: var(--college-purple-primary);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        .section-badge i { margin-right: 0.4rem; }

        .past-events-category {
            margin-bottom: 3.5rem;
        }
        .past-events-category:last-child { margin-bottom: 0; }

        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--college-text-primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--college-border-light);
        }
        .category-title i {
            color: var(--college-purple-primary);
            margin-right: 0.5rem;
        }

        .past-events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .past-event-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--college-shadow-sm);
            border: 1px solid var(--college-border-light);
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .past-event-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--college-shadow-lg);
        }

        .past-event-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #000;
        }
        .past-event-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .past-event-card:hover .past-event-thumb img {
            transform: scale(1.05);
        }

        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(97, 31, 105, 0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .past-event-card:hover .play-overlay {
            opacity: 1;
        }

        .past-event-info {
            padding: 1rem 1.25rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .past-event-tag {
            display: inline-block;
            background: var(--college-purple-light);
            color: var(--college-purple-primary);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            width: fit-content;
        }

        .past-event-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
            color: var(--college-text-primary);
        }

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

        .linkedin-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--college-shadow-md);
            border: 1px solid var(--college-border-light);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .linkedin-card:hover { transform: translateY(-5px); box-shadow: var(--college-shadow-xl); }
        
        .li-header {
            padding: 1rem;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f3f3f3;
        }
        .li-avatar { width: 48px; height: 48px; border-radius: 50%; background: #ddd; margin-right: 12px; object-fit: cover; }
        .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; }
        .li-text { font-size: 0.9rem; color: #333; margin-bottom: 1rem; line-height: 1.5; }
        .li-image { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; border: 1px solid #eee; }
        
        .li-footer {
            padding: 0.75rem 1rem;
            background: #f9f9f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #666;
        }
        .li-link { color: var(--college-purple-primary); text-decoration: none; font-weight: 600; }

        .event-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--college-shadow-md);
            position: relative;
        }
        .event-image-wrap { position: relative; height: 220px; overflow: hidden; }
        .event-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .event-card:hover .event-image-wrap img { transform: scale(1.05); }
        
        .event-date-badge {
            position: absolute; top: 15px; left: 15px;
            background: white; padding: 8px 12px; border-radius: 12px;
            text-align: center; font-weight: 700; color: var(--college-purple-primary);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .date-day { font-size: 1.2rem; line-height: 1; display: block; }
        .date-month { font-size: 0.75rem; text-transform: uppercase; }

        .event-content { padding: 1.5rem; }
        .event-college { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--college-purple-medium); font-weight: 700; margin-bottom: 0.5rem; display: block;}
        .event-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
        .event-desc { font-size: 0.95rem; color: var(--college-text-light); margin-bottom: 1rem; }
        .event-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
        .event-tag { font-size: 0.75rem; background: var(--college-purple-light); color: var(--college-purple-primary); padding: 4px 10px; border-radius: 20px; }

        .success-spotlight { background: white; }
        .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: 400px; }
        .spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
        .spotlight-content { flex: 1; padding: 4rem; text-align: left; }
        .spotlight-badge { background: var(--college-purple-primary); color: white; padding: 5px 12px; border-radius: 4px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; display: inline-block; }
        .spotlight-content h3 { font-size: 2rem; margin-bottom: 1rem; line-height: 1.2; color: var(--college-text-primary); }
        .spotlight-content p { color: var(--college-text-secondary); margin-bottom: 2rem; font-size: 1.05rem; }


        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; height: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--college-shadow-lg);
            background: #000;
        }
        .video-wrapper iframe {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
        }
        .video-caption { margin-top: 1rem; font-weight: 600; font-size: 1.1rem; text-align: center; }

        .linkedin-live-video-wrap {
            aspect-ratio: 16 / 9;
            background: #000;
        }
        .linkedin-live-video-wrap video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .case-study-card {
            background: white;
            border-radius: 20px;
            border: 1px solid var(--college-border-light);
            box-shadow: var(--college-shadow-md);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--college-shadow-lg);
        }

        .cs-header {
            padding: 1.75rem 1.75rem 1rem;
            border-bottom: 1px solid var(--college-border-light);
        }
        .cs-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--college-purple-medium);
        }
        .cs-company {
            font-size: 1.6rem;
            font-weight: 800;
            margin: 0.25rem 0 0.3rem;
            color: var(--college-text-primary);
        }
        .cs-meta {
            font-size: 0.9rem;
            color: #0077b5;
            font-weight: 500;
        }

        .cs-body {
            padding: 1.25rem 1.75rem;
            flex: 1;
        }

        .cs-block {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        .cs-block:last-child { margin-bottom: 0; }

        .cs-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .cs-icon-challenge { background: #fef2f2; color: #dc2626; }
        .cs-icon-solution { background: #f0f4ff; color: #3b5998; }
        .cs-icon-result { background: #f0fdf4; color: #16a34a; }

        .cs-block-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 0.3rem;
        }
        .cs-label-challenge { color: #dc2626; }
        .cs-label-solution { color: #3b5998; }
        .cs-label-result { color: #16a34a; }

        .cs-block p {
            font-size: 0.92rem;
            color: var(--college-text-secondary);
            line-height: 1.55;
        }

        .cs-result-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .cs-result-tag {
            font-size: 0.8rem;
            font-weight: 600;
            background: #f0fdf4;
            color: #16a34a;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid #bbf7d0;
        }

        .cs-cta {
            display: block;
            text-align: center;
            padding: 1rem 1.75rem;
            border-top: 1px solid var(--college-border-light);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--college-text-primary);
            text-decoration: none;
            transition: background 0.2s ease;
        }
        .cs-cta:hover {
            background: var(--college-purple-very-light);
            color: var(--college-purple-primary);
        }
        .cs-cta i { margin-left: 0.4rem; font-size: 0.8rem; }

        .cs-placeholder {
            border: 2px dashed var(--college-border-light);
            background: var(--college-purple-very-light);
            box-shadow: none;
        }
        .cs-placeholder:hover { transform: none; box-shadow: none; }
        .cs-placeholder-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 300px;
            color: var(--college-text-light);
            gap: 1rem;
        }
        .cs-placeholder-inner i { font-size: 2.5rem; color: var(--college-border-light); }
        .cs-placeholder-inner p { font-size: 1rem; font-weight: 600; }

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

        .upcoming-event-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--college-shadow-md);
            border: 1px solid var(--college-border-light);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .upcoming-event-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--college-shadow-lg);
        }

        .ue-type-badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
            margin-bottom: 1rem;
        }
        .ue-type-linkedin { background: #e8f4fd; color: #0077b5; }
        .ue-type-webinar { background: #f0fdf4; color: #16a34a; }
        .ue-type-roundtable { background: #fef3c7; color: #b45309; }
        .ue-type-conference { background: #fce7f3; color: #be185d; }

        .ue-topic {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            line-height: 1.3;
            color: var(--college-text-primary);
        }

        .ue-details {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex: 1;
        }
        .ue-detail {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.9rem;
            color: var(--college-text-secondary);
        }
        .ue-detail i {
            color: var(--college-purple-primary);
            width: 18px;
            text-align: center;
            font-size: 0.85rem;
        }

        .ue-cta {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            width: 100%;
        }

        .newsletter-section {
            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%);
        }

        .newsletter-box {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 4rem;
            border-radius: 30px;
            box-shadow: var(--college-shadow-lg);
        }

        .newsletter-content {
            flex: 1;
        }
        .newsletter-content p {
            color: var(--college-text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
            margin-top: 0.75rem;
        }

        .newsletter-graphic {
            flex-shrink: 0;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: var(--college-purple-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: var(--college-purple-primary);
        }

        .college-final-cta {
            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%);
            padding: 6rem 0; margin-top: 4rem;
        }
        .college-cta-box { text-align: center; max-width: 900px; margin: 0 auto; background: white; padding: 4rem; border-radius: 30px; }

        @media (max-width: 1024px) {
            .community-formats-grid { grid-template-columns: repeat(2, 1fr); }
            .past-events-grid { grid-template-columns: repeat(2, 1fr); }
            .case-studies-grid { grid-template-columns: 1fr; max-width: 500px; }
            .upcoming-events-grid { grid-template-columns: repeat(2, 1fr); }
            .stories-grid { grid-template-columns: repeat(2, 1fr); }
            .college-hero-text h1 { font-size: 2.5rem; }
        }
        
        @media (max-width: 768px) {
            .community-formats-grid { grid-template-columns: 1fr; }
            .past-events-grid { grid-template-columns: 1fr; }
            .upcoming-events-grid { grid-template-columns: 1fr; }
            .stories-grid { grid-template-columns: 1fr; }
            .college-hero-box { padding: 2rem; }
            .college-section { padding: 3rem 0; }
            .hero-floating-icon { display: none; }
            .spotlight-box { flex-direction: column; }
            .spotlight-img { height: 250px; width: 100%; }
            .spotlight-content { padding: 2rem; }
            .hero-stats { gap: 1.5rem; }
            .newsletter-box { flex-direction: column; text-align: center; padding: 2.5rem; gap: 2rem; }
            .newsletter-content .college-section-title { text-align: center; }
            .newsletter-graphic { width: 100px; height: 100px; font-size: 2.5rem; }
        }