        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: #2c3e50;
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
        }
        
        /* Header with asymmetric design */
        header {
            background: #ffffff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-wrapper {
            border-left: 6px solid #8b4513;
            padding-left: 20px;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #2c3e50;
        }
        
        .logo img {
            width: 55px;
            height: 55px;
            margin-right: 18px;
            border: 2px solid #8b4513;
            padding: 3px;
        }
        
        .logo-text {
            font-family: 'Crimson Text', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #8b4513;
            line-height: 1.2;
        }
        
        .logo-subtitle {
            font-size: 0.75rem;
            color: #7f8c8d;
            font-weight: 300;
            margin-top: -3px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        
        nav a {
            color: #34495e;
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #8b4513;
            transition: width 0.3s ease;
        }
        
        nav a:hover {
            color: #8b4513;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: #8b4513;
            font-size: 1.8rem;
            cursor: pointer;
        }
        
        /* Unique hero with diagonal elements */
        .hero {
            margin-top: 85px;
            position: relative;
            min-height: 85vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }
        
        .hero-diagonal {
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            background: url('../images/college-campus.jpg') center/cover;
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
            opacity: 0.9;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0;
            max-width: 55%;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(139, 69, 19, 0.1);
            color: #8b4513;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            border: 1px solid rgba(139, 69, 19, 0.2);
        }
        
        .hero h1 {
            font-family: 'Crimson Text', serif;
            font-size: 4.2rem;
            font-weight: 600;
            line-height: 1.1;
            color: #2c3e50;
            margin-bottom: 25px;
        }
        
        .hero h1 .highlight {
            color: #8b4513;
            font-style: italic;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: #5a6c7d;
            margin-bottom: 40px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: #8b4513;
            color: white;
            padding: 16px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }
        
        .btn-primary:hover {
            background: #704010;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
        }
        
        .btn-outline {
            border: 2px solid #8b4513;
            color: #8b4513;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .btn-outline:hover {
            background: #8b4513;
            color: white;
        }
        
        /* Unique about section with offset layout */
        .about {
            padding: 120px 0;
            background: #ffffff;
        }
        
        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }
        
        .about-text {
            padding-top: 40px;
        }
        
        .section-label {
            color: #8b4513;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .about h2 {
            font-family: 'Crimson Text', serif;
            font-size: 3.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .about p {
            font-size: 1.1rem;
            color: #5a6c7d;
            margin-bottom: 25px;
            font-weight: 300;
        }
        
        .about-highlight {
            background: #f8f9fa;
            padding: 30px;
            border-left: 4px solid #8b4513;
            margin: 40px 0;
        }
        
        .about-highlight h3 {
            color: #8b4513;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-family: 'Crimson Text', serif;
        }
        
        .about-visual {
            position: relative;
        }
        
        .about-main-img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .about-floating-card {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            max-width: 250px;
        }
        
        .about-floating-card h4 {
            color: #8b4513;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-family: 'Crimson Text', serif;
        }
        
        .about-floating-card p {
            font-size: 0.95rem;
            color: #5a6c7d;
            margin: 0;
        }
        
        /* Creative programs section */
        .programs {
            padding: 120px 0;
            background: #f8f9fa;
        }
        
        .programs-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .programs h2 {
            font-family: 'Crimson Text', serif;
            font-size: 3.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .programs-intro {
            font-size: 1.2rem;
            color: #5a6c7d;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
        }
        
        .program-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .program-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        
        .program-content {
            padding: 35px;
        }
        
        .program-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.95);
            color: #8b4513;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .program-content h3 {
            font-family: 'Crimson Text', serif;
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .program-content p {
            color: #5a6c7d;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .program-link {
            color: #8b4513;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .program-link:hover {
            gap: 8px;
        }
        
        .program-link:after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }
        
        /* Testimonial section instead of stats */
        .testimonials {
            padding: 120px 0;
            background: #2c3e50;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/campus-night.jpg') center/cover;
            opacity: 0.1;
        }
        
        .testimonials-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .testimonials h2 {
            font-family: 'Crimson Text', serif;
            font-size: 3rem;
            margin-bottom: 60px;
            font-weight: 600;
        }
        
        .testimonial-quote {
            font-size: 1.5rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 40px;
            font-weight: 300;
            color: #ecf0f1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #8b4513;
        }
        
        .author-info h4 {
            color: #8b4513;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
        /* Unique events section */
        .events {
            padding: 120px 0;
            background: white;
        }
        
        .events-header {
            display: flex;
            justify-content: space-between;
            align-items: end;
            margin-bottom: 60px;
        }
        
        .events h2 {
            font-family: 'Crimson Text', serif;
            font-size: 3.2rem;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .view-all {
            color: #8b4513;
            text-decoration: none;
            font-weight: 600;
            padding: 12px 25px;
            border: 2px solid #8b4513;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .view-all:hover {
            background: #8b4513;
            color: white;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }
        
        .featured-event {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: #f8f9fa;
            min-height: 400px;
        }
        
        .featured-event img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 40px;
        }
        
        .event-date {
            background: #8b4513;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .featured-overlay h3 {
            font-family: 'Crimson Text', serif;
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .featured-overlay p {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        .event-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .event-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .event-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        
        .event-item-date {
            flex-shrink: 0;
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 8px;
            border: 2px solid #8b4513;
        }
        
        .event-item-date .day {
            font-size: 1.5rem;
            font-weight: 700;
            color: #8b4513;
            line-height: 1;
        }
        
        .event-item-date .month {
            font-size: 0.8rem;
            color: #5a6c7d;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .event-item-content h4 {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .event-item-content p {
            color: #5a6c7d;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        /* Footer with personality */
        footer {
            background: #1a1a1a;
            color: #bdc3c7;
            padding: 80px 0 30px;
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }
        
        .footer-brand h3 {
            font-family: 'Crimson Text', serif;
            font-size: 2rem;
            color: #8b4513;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-brand p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #95a5a6;
        }
        
        .footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #8b4513;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #95a5a6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #8b4513;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                gap: 15px;
            }
            
            nav ul.active {
                display: flex;
            }
            
            .hero-diagonal {
                display: none;
            }
            
            .hero-content {
                max-width: 100%;
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .about-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .about-floating-card {
                position: static;
                margin-top: 30px;
            }
            
            .events-grid {
                grid-template-columns: 1fr;
            }
            
            .events-header {
                flex-direction: column;
                align-items: start;
                gap: 20px;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about h2,
            .programs h2,
            .events h2 {
                font-size: 2.5rem;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
            }
        }
