@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap&font-display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(180deg, #E8EAF6, #F5F7FA);
            min-height: 100vh;
            color: #212121;
            display: flex;
            flex-direction: column;
        }

        header {
            background: #1A237E;
            color: #FFFFFF;
            padding: 15px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-container .logo {
            font-size: 1.8em;
            font-weight: 700;
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-menu a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1em;
            margin-left: 20px;
            font-weight: 600;
        }

        .nav-menu a:hover {
            color: #FF6F00;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: #F9FAFB;
            min-width: 220px;
            max-height: 300px;
            overflow-y: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            z-index: 1000;
            top: 100%;
            right: 0;
            scrollbar-width: thin;
            scrollbar-color: #F57C00 #E8F0FE;
        }

        .dropdown-content::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-content::-webkit-scrollbar-track {
            background: #E8F0FE;
            border-radius: 8px;
        }

        .dropdown-content::-webkit-scrollbar-thumb {
            background: #F57C00;
            border-radius: 8px;
        }

        .dropdown-content::-webkit-scrollbar-thumb:hover {
            background: #E65100;
        }

        .dropdown-content a {
            color: #4B5EAA;
            padding: 12px 16px;
            display: block;
            font-weight: 400;
            margin: 0;
            text-decoration: none;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .dropdown-content a:hover {
            background: #E8F0FE;
            color: #F57C00;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        @media (max-width: 768px) {
            .dropdown-content {
                min-width: 180px;
                max-height: 250px;
            }
        }

        .hero {
            background: linear-gradient(90deg, #1A237E, #3F51B5);
            color: #FFFFFF;
            text-align: center;
            padding: 60px 20px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .hero h1 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .hero a {
            display: inline-block;
            font-size: 1.1em;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 8px;
            background: #FF6F00;
            color: #FFFFFF;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .hero a:hover {
            background: #F57C00;
            transform: scale(1.05);
        }

        .intro-section {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            text-align: center;
        }

        .intro-section h2 {
            font-size: 2.2em;
            font-weight: 700;
            color: #1A237E;
            margin-bottom: 15px;
        }

        .intro-section p {
            font-size: 1em;
            color: #616161;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            flex: 1;
        }

        .section-title {
            font-size: 2.2em;
            font-weight: 700;
            text-align: center;
            margin: 30px 0;
            color: #1A237E;
        }

        .article {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid #E0E0E0;
        }

        .article h2 {
            font-size: 1.8em;
            font-weight: 600;
            color: #1A237E;
            margin-bottom: 15px;
        }

        .article h3 {
            font-size: 1.4em;
            font-weight: 600;
            color: #1A237E;
            margin: 15px 0 10px;
        }

        .article p {
            font-size: 1em;
            color: #616161;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .article ul {
            list-style-type: disc;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .article ul li {
            font-size: 1em;
            color: #616161;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .article a {
            color: #FF6F00;
            text-decoration: none;
            font-weight: 600;
        }

        .article a:hover {
            color: #F57C00;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 20px 0;
        }

        .card {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid #E0E0E0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .card h2 {
            font-size: 1.5em;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1A237E;
        }

        .card p {
            font-size: 1em;
            color: #616161;
            margin-bottom: 15px;
            line-height: 1.5;
            flex-grow: 1;
        }

        .card a {
            display: inline-block;
            font-size: 1em;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 8px;
            background: #FF6F00;
            color: #FFFFFF;
            text-align: center;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .card a:hover {
            background: #F57C00;
            transform: scale(1.05);
        }

        .show-more {
            text-align: center;
            margin: 20px 0;
        }

        .show-more a {
            display: inline-block;
            font-size: 1.1em;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 8px;
            background: #FF6F00;
            color: #FFFFFF;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .show-more a:hover {
            background: #F57C00;
            transform: scale(1.05);
        }

        .cta-banner {
            background: #3F51B5;
            color: #FFFFFF;
            text-align: center;
            padding: 40px 20px;
            margin: 40px 0;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .cta-banner h2 {
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-banner p {
            font-size: 1.1em;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .cta-banner a {
            display: inline-block;
            font-size: 1.1em;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 8px;
            background: #FF6F00;
            color: #FFFFFF;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .cta-banner a:hover {
            background: #F57C00;
            transform: scale(1.05);
        }

        .faq-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

        .faq-section h2 {
            font-size: 2.2em;
            font-weight: 700;
            color: #1A237E;
            text-align: center;
            margin-bottom: 20px;
        }

        .faq-item {
            background: #FFFFFF;
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .faq-item h3 {
            font-size: 1.3em;
            font-weight: 600;
            color: #1A237E;
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 1em;
            color: #616161;
            line-height: 1.5;
        }

        .featured-blogs,
        .blog-teaser {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }

        .featured-blogs h2,
        .blog-teaser h2 {
            font-size: 2.2em;
            font-weight: 700;
            color: #1A237E;
            text-align: center;
            margin-bottom: 20px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .blog-card {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .blog-card h3 {
            font-size: 1.3em;
            font-weight: 600;
            color: #1A237E;
            margin-bottom: 10px;
        }

        .blog-card p {
            font-size: 0.95em;
            color: #616161;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .blog-card a {
            font-size: 0.9em;
            font-weight: 700;
            color: #FF6F00;
            text-decoration: none;
        }

        .blog-card a:hover {
            color: #F57C00;
        }

        .footer {
            background: #1A237E;
            color: #FFFFFF;
            text-align: center;
            padding: 20px;
            width: 100%;
            margin-top: auto;
        }

        .footer-links a {
            color: #FFFFFF;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1em;
        }

        .footer-links a:hover {
            color: #FF6F00;
        }

        .rights-reserved {
            font-size: 0.9em;
            margin-top: 10px;
            opacity: 0.8;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: scaleIn 0.3s ease;
        }

        .modal-content {
            background: #FFFFFF;
            max-width: 500px;
            width: 90%;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            color: #212121;
            position: relative;
            transform: scale(0.95);
            transition: transform 0.2s ease;
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        .modal-content h3 {
            font-size: 1.5em;
            font-weight: 600;
            margin: 10px 0;
            color: #1A237E;
        }

        .modal-content p {
            font-size: 0.9em;
            line-height: 1.5;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5em;
            color: #212121;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .close:hover {
            color: #FF6F00;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.2em;
            }

            .hero p {
                font-size: 1em;
            }

            .card-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .nav-container .logo {
                font-size: 1.5em;
            }

            .nav-menu a {
                margin-left: 15px;
            }

            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 40px 15px;
            }

            .hero h1 {
                font-size: 1.8em;
            }

            .hero p {
                font-size: 0.9em;
            }

            .section-title {
                font-size: 1.8em;
            }

            .container {
                padding: 10px;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }

            .card {
                padding: 15px;
            }

            .footer {
                padding: 15px;
                font-size: 0.9em;
            }

            .rights-reserved {
                font-size: 0.8em;
            }

            .modal-content {
                padding: 15px;
            }

            .nav-container {
                flex-direction: column;
            }

            .nav-menu {
                margin-top: 10px;
            }

            .nav-menu a {
                margin: 5px 10px;
            }

            .dropdown-content {
                min-width: 150px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
