
        :root {
            --primary-color: #1463f5ff;
            --secondary-color: #2a5298;
            --accent-color: #667eea;
            --gold-color: #f59e0b;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: white !important;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
        }

        .page-header {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.85)),
                        url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 120px 0 80px;
            margin-top: 56px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-top: 20px;
        }

        .breadcrumb-item a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: rgba(255,255,255,0.8);
        }

        .featured-news {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .featured-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .featured-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .featured-content {
            padding: 2.5rem;
        }

        .news-category {
            display: inline-block;
            padding: 6px 15px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .news-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .news-meta i {
            color: var(--accent-color);
            margin-right: 5px;
        }

        .featured-title {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .featured-excerpt {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .btn-read-more {
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            color: white;
        }

        .news-section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .filter-section {
            background: #f8fafc;
            padding: 2rem 0;
            margin-bottom: 3rem;
            border-radius: 15px;
        }

        .filter-btn {
            margin: 5px;
            padding: 10px 25px;
            border-radius: 25px;
            border: 2px solid var(--accent-color);
            background: white;
            color: var(--accent-color);
            font-weight: 600;
            transition: all 0.3s;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--accent-color);
            color: white;
        }

        .news-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .news-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .news-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .news-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }

        .news-excerpt {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .news-date {
            color: #999;
            font-size: 0.85rem;
        }

        .success-stories {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 5rem 0;
        }

        .success-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s;
            height: 100%;
        }

        .success-card:hover {
            transform: translateY(-10px);
        }

        .student-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--accent-color);
        }

        .student-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .student-destination {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .student-quote {
            color: #666;
            font-style: italic;
            line-height: 1.7;
        }

        .newsletter-section {
            background: #f8fafc;
            padding: 4rem 0;
        }

        .newsletter-box {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
        }

        .newsletter-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .newsletter-title {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 2rem auto 0;
        }

        .newsletter-input {
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 25px;
            width: 100%;
            margin-bottom: 1rem;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .btn-subscribe {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .featured-title {
                font-size: 1.5rem;
            }

            .news-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
