body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            font-family: 'Poppins', sans-serif;
        }
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 2rem;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: #2c3e50;
        }
        .navbar-brand i {
            color: #4a90e2;
        }
        .nav-link {
            color: #34495e;
            font-weight: 600;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: #4a90e2;
        }
        .nav-link.active {
            color: #4a90e2;
            position: relative;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background-color: #4a90e2;
            border-radius: 2px;
        }
        .btn-login {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border: none;
            padding: 8px 20px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #357abd 0%, #2c6aa0 100%);
            transform: translateY(-2px);
        }
        .hero-section {
            padding: 0;
            text-align: center;
            color: #2c3e50;
            position: relative;
            background: #f5f7fa;
            overflow: hidden;
        }
        .carousel {
            background: #f5f7fa;
        }
        .carousel-item {
            height: 100vh;
            min-height: 500px;
            background: no-repeat center center;
            background-size: cover;
            position: relative;
        }
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            padding: 0;
            z-index: 2;
        }
        .carousel-caption h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .carousel-caption p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .carousel-indicators {
            margin-bottom: 2rem;
            z-index: 2;
        }
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            z-index: 2;
        }
        .btn-hero {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .btn-hero:hover {
            background: linear-gradient(135deg, #357abd 0%, #2c6aa0 100%);
            transform: translateY(-2px);
            color: #fff;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2.5rem;
        }
        .info-card {
            background-color: #fff;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .info-card i {
            font-size: 2.5rem;
            color: #4a90e2;
            margin-bottom: 1rem;
        }
        .info-card h3 {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        .info-card p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        .footer {
            background-color: #fff;
            padding: 2rem 0 1rem;
            margin-top: 4rem;
            box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
        }
        .footer h5 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .footer p {
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        .footer .social-links a {
            display: inline-block;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            background: #f8f9fa;
            border-radius: 50%;
            margin-right: 8px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .footer .social-links a:hover {
            background: #4a90e2;
            color: #fff !important;
            transform: translateY(-2px);
        }
        .footer-bottom {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 0.85rem;
        }
        /* New styles for information section */
        .info-scroll-container {
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        .info-scroll-container::-webkit-scrollbar {
            height: 8px;
        }
        .info-scroll-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        .info-scroll-container::-webkit-scrollbar-thumb {
            background: #4a90e2;
            border-radius: 10px;
        }
        .info-scroll-container::-webkit-scrollbar-thumb:hover {
            background: #357abd;
        }
        .info-scroll-wrapper {
            display: flex;
            gap: 20px;
            padding: 10px;
        }
        .info-article-card {
            min-width: 300px;
            max-width: 400px;
            background: #fff;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        .info-article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .info-article-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }
        .info-article-card .card-content {
            padding: 25px;
        }
        .info-article-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .info-article-card p {
            font-family: 'Poppins', sans-serif;
            color: #34495e;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .info-article-card ul {
            list-style-type: none;
            padding-left: 0;
        }
        .info-article-card ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            color: #34495e;
        }
        .info-article-card ul li:last-child {
            border-bottom: none;
        }
        /* Responsive styles */
        @media (max-width: 1200px) {
            .carousel-item {
                height: 90vh;
            }
            .carousel-caption h1 {
                font-size: 3rem;
            }
            .carousel-caption p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 992px) {
            .carousel-item {
                height: 80vh;
            }
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            .carousel-caption p {
                font-size: 1rem;
            }
            .btn-hero {
                padding: 10px 25px;
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .info-article-card {
                min-width: 280px;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 60vh;
                min-height: 400px;
            }
            .carousel-caption h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            .carousel-caption p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            .carousel-indicators {
                margin-bottom: 1rem;
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 10%;
            }
            .navbar {
                padding: 0.5rem 1rem;
            }
            .navbar-brand {
                font-size: 1.1rem;
            }
            .nav-link {
                padding: 0.5rem;
                font-size: 0.9rem;
            }
            .btn-login {
                padding: 6px 15px;
                font-size: 0.9rem;
            }
            .info-scroll-container {
                padding: 10px 0;
            }
            .info-article-card {
                min-width: 260px;
            }
            .info-article-card img {
                height: 180px;
            }
            .footer {
                padding: 1.5rem 0 1rem;
            }
            .footer h5 {
                font-size: 1rem;
                margin-bottom: 0.75rem;
            }
            .footer p {
                font-size: 0.85rem;
                margin-bottom: 0.4rem;
            }
        }

        @media (max-width: 576px) {
            .carousel-item {
                height: 50vh;
                min-height: 350px;
            }
            .carousel-caption h1 {
                font-size: 1.75rem;
            }
            .carousel-caption p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }
            .btn-hero {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            .carousel-indicators button {
                width: 8px;
                height: 8px;
                margin: 0 3px;
            }
            .navbar-brand {
                font-size: 1rem;
            }
            .navbar-brand i {
                font-size: 0.9rem;
            }
            .nav-link {
                font-size: 0.85rem;
            }
            .section-title {
                font-size: 1.75rem;
            }
            .info-article-card {
                min-width: 240px;
            }
            .info-article-card img {
                height: 160px;
            }
            .info-article-card h3 {
                font-size: 1.25rem;
            }
            .info-article-card p {
                font-size: 0.85rem;
            }
            .footer {
                text-align: center;
            }
            .footer .social-links {
                justify-content: center;
                margin-bottom: 1rem;
            }
            .footer .col-md-6.text-md-end {
                text-align: center !important;
            }
        }

        @media (max-width: 375px) {
            .carousel-item {
                height: 45vh;
                min-height: 300px;
            }
            .carousel-caption h1 {
                font-size: 1.5rem;
            }
            .carousel-caption p {
                font-size: 0.8rem;
                margin-bottom: 0.75rem;
            }
            .btn-hero {
                padding: 6px 15px;
                font-size: 0.85rem;
            }
        }

        /* Additional responsive utilities */
        .navbar-toggler {
            padding: 0.25rem 0.5rem;
            font-size: 0.9rem;
        }

        .info-scroll-wrapper {
            padding: 5px;
            gap: 15px;
        }

        .footer .social-links a {
            width: 28px;
            height: 28px;
            line-height: 28px;
            font-size: 0.8rem;
        }

        /* Ensure smooth scrolling on touch devices */
        .info-scroll-container {
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }

        /* Improve touch targets on mobile */
        @media (max-width: 768px) {
            .nav-link, .btn-login {
                padding: 0.75rem;
                margin: 0.25rem 0;
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 15%;
            }
        }