:root {
            --primary-blue: #0d6efd;
            --dark-blue: #052c65;
            --light-blue: #cfe2ff;
            --accent-orange: #fd7e14;
            --dark-bg: #212529;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--dark-blue);
        }
        .navbar {
            background-color: rgba(13, 110, 253, 0.95) !important;
            backdrop-filter: blur(10px);
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.25rem;
            border-radius: 0.375rem;
            transition: all 0.3s;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(5, 44, 101, 0.85), rgba(13, 110, 253, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
            margin-top: 76px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
        }
        .section-padding {
            padding: 5rem 0;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s, background-color 0.3s;
        }
        .icon-box:hover {
            transform: scale(1.1);
            background-color: var(--primary-blue);
        }
        .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .icon-box:hover i { color: white; }
        .card {
            border: none;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
        }
        .friendlink a.flink {
            display: inline-block;
            background: var(--light-bg);
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark-bg);
            color: #adb5bd;
        }
        footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover { color: white; }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #495057;
            color: white;
            margin-right: 0.75rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue);
            color: var(--dark-blue);
            font-weight: 600;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(13, 110, 253, 0.05);
        }
        .bg-light-section {
            background-color: var(--light-bg);
        }
        .text-content {
            text-align: justify;
            hyphens: auto;
        }
