.elementor-26594 .elementor-element.elementor-element-81d5ac3 {

            --display: initial;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: 'Poppins', Arial, Helvetica, sans-serif; */
        }

        body {
            background-color: #314358;
            color: #333;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Header */
        /* header {
            background-color: #314358;
            padding: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            margin-top: -50px;
        } */

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            height: 75px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #DFDF6F;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }

        nav.mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background-color: white;
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            z-index: 9999;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        nav.mobile-menu a {
            padding: 10px 0;
            border-bottom: 1px solid rgba(49, 67, 88, 0.1);
            color: #314358;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav.mobile-menu a:hover {
            color: rgba(49, 67, 88, 0.5);
        }

        nav.mobile-menu a:last-child {
            border-bottom: none;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #314358 0%, #2a3847 100%);
            padding: 60px 20px;
            text-align: left;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero h1 {
            font-size: 48px;
            color: white;
            margin-bottom: 15px;
            max-width: 1200px;
        }

        .hero h1 .highlight {
            color: #DFDF6F;
        }

        .hero p {
            font-size: 18px;
            color: #D1EEFB;
            max-width: 600px;
            text-align: start;
            margin: 0;
            margin-bottom: 10px;
        }

        /* Main Content */
        .main-content {
            background-color: #314358;
            padding: 40px 20px;
            min-height: calc(100vh - 200px);
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .intro-text {
            background-color: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #DFDF6F;
            padding: 20px;
            margin-bottom: 40px;
            border-radius: 4px;
        }

        .intro-text p {
            color: #D1EEFB;
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .intro-text p:last-child {
            margin-bottom: 0;
            color: #DFDF6F;
            font-weight: 600;
        }

        /* Filters */
        .filters {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            justify-content: center;
        }

        .filter-group {
            display: inline-block;
        }

        .filter-group h3 {
            color: #DFDF6F;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 14px;
        }

        select {
            padding: 0.75rem;
            border: 2px solid #4B736E;
            border-radius: 4px;
            background-color: white;
            font-size: 1rem;
            color: #314358;
            cursor: pointer;
            font-family: 'Poppins', Arial, Helvetica, sans-serif;
            min-width: 250px;
            font-weight: 600;
        }

        select:hover {
            border-color: #DFDF6F;
        }

        select:focus {
            outline: none;
            border-color: #DFDF6F;
            box-shadow: 0 0 0 3px rgba(223, 223, 111, 0.1);
        }

        /* Course Grid */
        .course-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .course-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 500px;
            opacity: 0;
            animation: simpleFlow 0.5s ease-out forwards;
        }

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

        .course-image {
            width: 100% !important;
            height: 200px !important;
            object-fit: cover !important;
            object-position: center !important;
            max-width: none !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        .course-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            position: relative;
            min-height: 200px;
        }

        .course-title {
            color: #314358;
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
            min-height: 2.8em;
            font-weight: 600;
        }

        .course-dates {
            margin-bottom: 1.5rem;
            color: #666;
            font-size: 0.9rem;
            text-align: left;
        }

        .course-dates p {
            margin: 0.3rem 0;
            text-align: left;
        }

        .course-dates strong {
            color: #4B736E;
        }

        .course-links {
            display: flex;
            gap: 1rem;
            width: fit-content;
            margin-left: auto;
            margin-right: 1rem;
            position: absolute;
            bottom: 5.8rem;
            right: 10px;
        }

        .course-links a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
            background-color: #D1EEFB;
            color: #4B736E;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 3px 3px 3px 1rem;
            border-radius: 50px;
            width: fit-content;
        }

        .course-links a i {
            font-size: 1rem;
            background-color: #4B736E;
            color: white;
            width: 33px;
            height: 33px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .course-links a:hover {
            opacity: 0.9;
        }

        .course-button {
            display: block;
            width: 100%;
            padding: 1rem;
            background-color: #4B736E;
            color: white;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            font-family: 'Poppins', Arial, Helvetica, sans-serif;
            margin-top: auto;
            padding: 10px 20px;
        }

        .course-button:hover {
            background-color: #3a5a56;
        }

        /* Footer */
        /* footer {
            background-color: #2a3847;
            color: white;
            padding: 40px 20px 20px;
            margin-bottom: -20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #DFDF6F;
        }

        .footer-section a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #D1EEFB;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #DFDF6F;
        } */

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #4B736E;
            color: white;
            transition: background-color 0.3s ease;
        }

        .social-links a:hover {
            background-color: #3c5d58;
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: #D1EEFB;
            font-size: 14px;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav.desktop-menu {
                display: none;
            }

            .hero h1 {
                font-size: 32px;
            }

            .filters {
                flex-direction: column;
                align-items: center;
            }

            .filter-group {
                width: 100%;
            }

            select {
                width: 100%;
            }

            .course-card {
                min-height: 520px;
            }

            .course-info {
                min-height: 250px;
            }
        }

        /* Animation */
        @keyframes simpleFlow {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .course-card {
            opacity: 0;
            animation: simpleFlow 1s ease-out forwards;
        }

        /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #d9ebff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            flex-direction: column;
            gap: 30px;
        }

        #loading-screen.hidden {
            display: none;
        }

        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .logo-wrapper {
            animation: pulse 1.5s ease-in-out infinite;
        }

        .senai-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 200px;
            height: 200px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .senai-logo {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .senai-logo {
                width: 160px;
                height: 160px;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.4;
                transform: scale(1.05);
            }
        }

        .loading-text {
            color: #0E4194;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 1px;
            animation: fadeInOut 1.5s ease-in-out infinite;
        }

        @keyframes fadeInOut {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }