 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f8f8;
        }

        .Institutions_hero {
            min-height: 100vh;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
        }

        .Institutions_hero_container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: start;
        }

        .Institutions_hero_content {
            padding-top: 20px;
        }

        .Institutions_hero_title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #333;
        }

        .Institutions_hero_title .highlight {
            color: #FF0000;
        }

        .Institutions_hero_subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .Institutions_hero_subtitle .number {
            font-weight: 700;
            color: #333;
        }

        .Institutions_hero_slider_section {
            margin-top: 50px;
        }

        .Institutions_hero_slider_container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .Institutions_hero_slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .Institutions_hero_slide {
            min-width: 100%;
            position: relative;
        }

        .Institutions_hero_slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .Institutions_hero_slide_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .Institutions_hero_dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .Institutions_hero_dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .Institutions_hero_dot.active {
            background: #FF0000;
            transform: scale(1.2);
        }

        .Institutions_hero_form_container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            height: fit-content;
            position: sticky;
            top: 40px;
        }

        .Institutions_hero_form_title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .Institutions_hero_form_group {
            margin-bottom: 20px;
        }

        .Institutions_hero_form_input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .Institutions_hero_form_input:focus {
            outline: none;
            border-color: #FF0000;
            background: white;
        }

        .Institutions_hero_form_select {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            background: #fafafa;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .Institutions_hero_form_select:focus {
            outline: none;
            border-color: #FF0000;
            background: white;
        }

        .Institutions_hero_form_submit {
            width: 100%;
            padding: 18px;
            background: #FF0000;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .Institutions_hero_form_submit:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
        }

        .Institutions_hero_nav_buttons {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #FF0000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .Institutions_hero_nav_buttons:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .Institutions_hero_prev {
            left: 20px;
        }

        .Institutions_hero_next {
            right: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .Institutions_hero_container {
                grid-template-columns: 1fr 350px;
                gap: 40px;
            }

            .Institutions_hero_title {
                font-size: 3rem;
            }
        }

        @media (max-width: 968px) {
            .Institutions_hero_container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .Institutions_hero_form_container {
                position: static;
                max-width: 500px;
                margin: 0 auto;
            }

            .Institutions_hero_title {
                font-size: 2.5rem;
                text-align: center;
            }

            .Institutions_hero_subtitle {
                text-align: center;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .Institutions_hero {
                padding: 20px 15px;
            }

            .Institutions_hero_title {
                font-size: 2rem;
            }

            .Institutions_hero_subtitle {
                font-size: 1.1rem;
            }

            .Institutions_hero_form_container {
                padding: 30px 20px;
            }

            .Institutions_hero_slide img {
                height: 300px;
            }

            .Institutions_hero_nav_buttons {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .Institutions_hero_title {
                font-size: 1.8rem;
            }

            .Institutions_hero_subtitle {
                font-size: 1rem;
            }

            .Institutions_hero_form_container {
                padding: 25px 15px;
            }

            .Institutions_hero_slide img {
                height: 250px;
            }
        }
    

    
       

        .Institutions_Curriculum {
            padding: 60px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        }

        .Institutions_Curriculum_container {
            /* max-width: 1400px; */
            margin: 0 auto;
        }

        .Institutions_Curriculum_title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            color: #333;
            margin-bottom: 60px;
            line-height: 1.2;
        }

        .Institutions_Curriculum_title .highlight {
            color: #FF0000;
        }

        .Institutions_Curriculum_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .Institutions_Curriculum_card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            cursor: pointer;
        }

        .Institutions_Curriculum_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .Institutions_Curriculum_card_image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .Institutions_Curriculum_card_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .Institutions_Curriculum_card:hover .Institutions_Curriculum_card_image img {
            transform: scale(1.1);
        }

        .Institutions_Curriculum_card_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
        }

        .Institutions_Curriculum_card_badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: #FF0000;
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }

        .Institutions_Curriculum_card_icon {
            font-size: 4rem;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .Institutions_Curriculum_card_content {
            padding: 30px;
            text-align: center;
        }

        .Institutions_Curriculum_card_title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .Institutions_Curriculum_card_description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .Institutions_Curriculum_card_features {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .Institutions_Curriculum_card_feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.9rem;
        }

        .Institutions_Curriculum_card_feature_icon {
            width: 16px;
            height: 16px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .Institutions_Curriculum_grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 968px) {
            .Institutions_Curriculum {
                padding: 60px 20px;
            }

            .Institutions_Curriculum_title {
                font-size: 2.5rem;
                margin-bottom: 50px;
            }

            .Institutions_Curriculum_grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }

            .Institutions_Curriculum_card_image {
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .Institutions_Curriculum {
                padding: 50px 15px;
            }

            .Institutions_Curriculum_title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .Institutions_Curriculum_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .Institutions_Curriculum_card_content {
                padding: 25px 20px;
            }

            .Institutions_Curriculum_card_image {
                height: 200px;
            }

            .Institutions_Curriculum_card_icon {
                font-size: 3rem;
            }
        }

        @media (max-width: 480px) {
            .Institutions_Curriculum_title {
                font-size: 1.8rem;
            }

            .Institutions_Curriculum_card_content {
                padding: 20px 15px;
            }

            .Institutions_Curriculum_card_badge {
                padding: 10px 20px;
                font-size: 0.8rem;
            }

            .Institutions_Curriculum_card_features {
                flex-direction: column;
                gap: 10px;
            }
        }

        /* Animation for cards on scroll */
        .Institutions_Curriculum_card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .Institutions_Curriculum_card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .Institutions_Curriculum_card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .Institutions_Curriculum_card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .Institutions_Curriculum_card:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    

     
      

        .Institutions_Industry {
            padding: 80px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
        }

        .Institutions_Industry_container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .Institutions_Industry_title {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 60px;
            text-align: left;
            line-height: 1.2;
        }

        .Institutions_Industry_title .highlight {
            color: #FF0000;
        }

        .Institutions_Industry_content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .Institutions_Industry_text {
            order: 1;
        }

        .Institutions_Industry_text_content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .Institutions_Industry_text_content p {
            margin-bottom: 25px;
        }

        .Institutions_Industry_text_content .stat {
            color: #333;
            font-weight: 600;
        }

        .Institutions_Industry_text_content .highlight {
            color: #FF0000;
            font-weight: 600;
        }

        .Institutions_Industry_stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .Institutions_Industry_stat_card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            border-left: 4px solid #FF0000;
        }

        .Institutions_Industry_stat_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .Institutions_Industry_stat_number {
            font-size: 2rem;
            font-weight: 700;
            color: #FF0000;
            margin-bottom: 10px;
        }

        .Institutions_Industry_stat_label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        .Institutions_Industry_image {
            order: 2;
            position: relative;
        }

        .Institutions_Industry_image_container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            position: relative;
            background: linear-gradient(135deg, #FF0000, #cc0000);
            padding: 3px;
        }

        .Institutions_Industry_image_inner {
            border-radius: 22px;
            overflow: hidden;
            position: relative;
        }

        .Institutions_Industry_image img {
            width: 100%;
            height: 750px;
            object-fit: cover;
            transition: transform 0.4s ease;
            filter: contrast(1),brightness(2);
        }

        .Institutions_Industry_image_container:hover img {
            transform: scale(1.05);
        }

        .Institutions_Industry_image_overlay {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .Institutions_Industry_image_overlay_text {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .Institutions_Industry_image_overlay_subtext {
            font-size: 0.9rem;
            color: #FF0000;
            font-weight: 500;
        }

        .Institutions_Industry_opportunities {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .Institutions_Industry_opportunity {
            background: #FF0000;
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .Institutions_Industry_opportunity:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .Institutions_Industry_content {
                gap: 50px;
            }

            .Institutions_Industry_title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 968px) {
            .Institutions_Industry_content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .Institutions_Industry_text {
                order: 2;
            }

            .Institutions_Industry_image {
                order: 1;
            }

            .Institutions_Industry_title {
                text-align: center;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .Institutions_Industry {
                padding: 60px 15px;
            }

            .Institutions_Industry_title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .Institutions_Industry_text_content {
                font-size: 1rem;
                line-height: 1.7;
            }

            .Institutions_Industry_stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .Institutions_Industry_image img {
                height: 350px;
            }

            .Institutions_Industry_image_overlay {
                bottom: 20px;
                left: 20px;
                right: 20px;
                padding: 15px 20px;
            }
        }

        @media (max-width: 480px) {
            .Institutions_Industry_title {
                font-size: 1.8rem;
            }

            .Institutions_Industry_stat_card {
                padding: 20px 15px;
            }

            .Institutions_Industry_stat_number {
                font-size: 1.6rem;
            }

            .Institutions_Industry_opportunities {
                justify-content: center;
            }

            .Institutions_Industry_opportunity {
                padding: 10px 15px;
                font-size: 0.85rem;
            }
        }

        /* Animation for elements on scroll */
        .Institutions_Industry_text,
        .Institutions_Industry_image {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .Institutions_Industry_image {
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    

    
       

        .Institutions_Why {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
        }

        .Institutions_Why_container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .Institutions_Why_title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            color: #333;
            margin-bottom: 60px;
            line-height: 1.2;
        }

        .Institutions_Why_title .highlight {
            color: #FF0000;
        }

        .Institutions_Why_content {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 60px;
            align-items: start;
        }

        .Institutions_Why_logo {
            order: 1;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            position: relative;
            flex-direction: column;
            gap: 30px;
        }

        .Institutions_Why_logo_container {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF0000, #cc0000);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 25px 60px rgba(255, 0, 0, 0.3);
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .Institutions_Why_logo_inner {
            width: 270px;
            height: 270px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .Institutions_Why_logo_text {
            text-align: center;
        }

        .Institutions_Why_logo_brand {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            padding: 0;
            line-height: 1.1;
        }

        .Institutions_Why_logo_brand .digital {
            color: #FF0000;
        }

        .Institutions_Why_logo_brand .allianz {
            color: #333;
        }

        .Institutions_Why_logo_tagline {
            font-size: 1rem;
            color: #666;
            font-weight: 500;
            margin-top: 8px;
        }

        .Institutions_Why_logo_decorative {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FF0000" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') center/cover;
        }

        .Institutions_Why_image {
            width: 100%;
            max-width: 350px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
            transform: translateY(30px);
        }

        .Institutions_Why_image:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .Institutions_Why_text {
            order: 2;
        }

        .Institutions_Why_section {
            margin-bottom: 50px;
        }

        .Institutions_Why_section:last-child {
            margin-bottom: 0;
        }

        .Institutions_Why_section_title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .Institutions_Why_section_icon {
            width: 40px;
            height: 40px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .Institutions_Why_list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .Institutions_Why_list_item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #FF0000;
        }

        .Institutions_Why_list_item:last-child {
            margin-bottom: 0;
        }

        .Institutions_Why_list_item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .Institutions_Why_list_icon {
            width: 24px;
            height: 24px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .Institutions_Why_list_text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #666;
            flex: 1;
            margin: 0;
        }

        .Institutions_Why_list_text .highlight {
            color: #FF0000;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .Institutions_Why_content {
                grid-template-columns: 300px 1fr;
                gap: 50px;
            }

            .Institutions_Why_logo_container {
                width: 280px;
                height: 280px;
            }

            .Institutions_Why_logo_inner {
                width: 250px;
                height: 250px;
            }

            .Institutions_Why_logo_brand {
                font-size: 1.8rem;
            }

            .Institutions_Why_image {
                max-width: 300px;
                height: 750px;
            }
        }

        @media (max-width: 968px) {
            .Institutions_Why_content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .Institutions_Why_text {
                order: 1;
            }

            .Institutions_Why_logo {
                order: 2;
                justify-content: center;
                align-items: center;
            }

            .Institutions_Why_title {
                font-size: 2.5rem;
                margin-bottom: 50px;
            }

            .Institutions_Why_section_title {
                justify-content: center;
                text-align: center;
            }

            .Institutions_Why_image {
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .Institutions_Why {
                padding: 60px 15px;
            }

            .Institutions_Why_title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .Institutions_Why_logo_container {
                width: 250px;
                height: 250px;
            }

            .Institutions_Why_logo_inner {
                width: 220px;
                height: 220px;
            }

            .Institutions_Why_logo_brand {
                font-size: 1.6rem;
            }

            .Institutions_Why_logo_tagline {
                font-size: 0.9rem;
            }

            .Institutions_Why_section_title {
                font-size: 1.5rem;
            }

            .Institutions_Why_list_item {
                padding: 15px;
                margin-bottom: 15px;
            }

            .Institutions_Why_list_text {
                font-size: 1rem;
            }

            .Institutions_Why_image {
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .Institutions_Why_title {
                font-size: 1.8rem;
            }

            .Institutions_Why_logo_container {
                width: 200px;
                height: 200px;
            }

            .Institutions_Why_logo_inner {
                width: 170px;
                height: 170px;
            }

            .Institutions_Why_logo_brand {
                font-size: 1.4rem;
            }

            .Institutions_Why_section_title {
                font-size: 1.3rem;
                flex-direction: column;
                gap: 10px;
            }

            .Institutions_Why_list_item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .Institutions_Why_image {
                max-width: 250px;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .Institutions_Why_text,
        .Institutions_Why_logo {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .Institutions_Why_logo {
            animation-delay: 0.2s;
        }

        .Institutions_Why_list_item {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .Institutions_Why_list_item:nth-child(1) { animation-delay: 0.1s; }
        .Institutions_Why_list_item:nth-child(2) { animation-delay: 0.2s; }
        .Institutions_Why_list_item:nth-child(3) { animation-delay: 0.3s; }
        .Institutions_Why_list_item:nth-child(4) { animation-delay: 0.4s; }
        .Institutions_Why_list_item:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
    


    
        
        .institutions_participants_container {
            /* max-width: 900px; */
            margin: 0 auto;
            padding: 0 20px;
        }

        .institutions_participants_card {
            /* background: #ffffff; */
            /* border-radius: 20px; */
            padding: 60px 40px;
            /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); */
            position: relative;
            overflow: hidden;
        }

        .institutions_participants_card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            /* background: linear-gradient(90deg, #FF0000 0%, #cc0000 100%); */
        }

        .institutions_participants_heading {
            text-align: center;
            margin-bottom: 50px;
        }

        .institutions_participants_title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .institutions_participants_title_highlight {
            color: #FF0000;
        }

        .institutions_participants_subtitle {
            font-size: 1.1rem;
            color: #666666;
            font-weight: 300;
        }

        .institutions_participants_grid {
            display: grid;
            gap: 30px;
            margin-bottom: 50px;
        }

        .institutions_participants_item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: #ffffff;
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .institutions_participants_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,0,0,0.1);
            border-color: #FF0000;
        }

        .institutions_participants_icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .institutions_participants_content {
            flex: 1;
        }

        .institutions_participants_item_title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
        }

        .institutions_participants_item_description {
            font-size: 0.95rem;
            color: #666666;
            line-height: 1.6;
        }

        .institutions_participants_cta {
            text-align: center;
        }

        .institutions_participants_button {
            display: inline-block;
            background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(255,0,0,0.3);
        }

        .institutions_participants_button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(255,0,0,0.4);
            background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .institutions_participants_card {
                padding: 40px 25px;
            }

            .institutions_participants_title {
                font-size: 2rem;
            }

            .institutions_participants_item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px;
            }

            .institutions_participants_icon {
                align-self: center;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .institutions_participants_button {
                padding: 16px 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .institutions_participants_container {
                padding: 0 15px;
            }

            .institutions_participants_card {
                padding: 30px 20px;
            }

            .institutions_participants_title {
                font-size: 1.7rem;
            }

            .institutions_participants_item {
                padding: 15px;
            }

            .institutions_participants_button {
                padding: 14px 30px;
                font-size: 0.95rem;
            }
        }
    

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .webinars__Institutes_place {
            width: 100%;
            padding: 60px 10px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            font-family: 'Arial', sans-serif;
        }

        .webinars__Institutes_place__container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.3fr 1.7fr;
            gap: 10px;
            
        }

        .webinars__Institutes_place__left_section {
            text-align: center;
        }

        .webinars__Institutes_place__right_section {
            text-align: center;
        }

        .webinars__Institutes_place__heading {
            font-size: 2.2rem;
            font-weight: bold;
            color: black;
            margin-bottom: 40px;
            position: relative;
            text-align: center;
        }

        .webinars__Institutes_place__heading i {
            display: none;
        }

        .webinars__Institutes_place__heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #FF0000, #ff4444);
            border-radius: 2px;
        }

        .webinars__Institutes_place__partner_images {
            display: flex;
            flex-direction: column;
            gap: 5px;
            align-items: center;
        }

        .webinars__Institutes_place__partner_item {
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            width: 100%;
            max-width: 300px;
        }

        .webinars__Institutes_place__partner_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
            border-color: #FF0000;
        }

        .webinars__Institutes_place__partner_image {
            width: 100%;
            height: 55px;
            object-fit: contain;
            filter: grayscale(20%);
            transition: filter 0.3s ease;
        }

        .webinars__Institutes_place__partner_item:hover .webinars__Institutes_place__partner_image {
            filter: grayscale(0%);
        }

        .webinars__Institutes_place__institute_section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .webinars__Institutes_place__institute_image_container {
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: 3px solid #FF0000;
            position: relative;
            overflow: hidden;
        }

        .webinars__Institutes_place__institute_image_container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .webinars__Institutes_place__institute_image_container:hover::before {
            left: 100%;
        }

        .webinars__Institutes_place__institute_image_container:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 45px rgba(255, 0, 0, 0.3);
        }

        .webinars__Institutes_place__institute_image {
            width: 100%;
            max-width: 950px;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        .webinars__Institutes_place__company_badge {
            position: absolute;
            top: -4px;
            right: -7px;
            background: #FF0000;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .webinars__Institutes_place {
                padding: 40px 15px;
            }

            .webinars__Institutes_place__container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .webinars__Institutes_place__heading {
                font-size: 2rem;
                flex-direction: column;
                gap: 10px;
            }

            .webinars__Institutes_place__heading i {
                font-size: 1.8rem;
            }

            .webinars__Institutes_place__partner_images {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }

            .webinars__Institutes_place__partner_item {
                max-width: 250px;
                padding: 20px;
            }

            .webinars__Institutes_place__institute_image {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .webinars__Institutes_place__heading {
                font-size: 1.6rem;
            }

            .webinars__Institutes_place__partner_images {
                flex-direction: column;
            }

            .webinars__Institutes_place__partner_item {
                max-width: 100%;
                padding: 15px;
            }

            .webinars__Institutes_place__partner_image {
                height: 60px;
            }

            .webinars__Institutes_place__institute_image_container {
                padding: 15px;
                border-width: 2px;
            }
        }

        /* Animation for page load */
        .webinars__Institutes_place__left_section,
        .webinars__Institutes_place__right_section {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .webinars__Institutes_place__right_section {
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .webinars__Institutes_place__partner_item {
            animation: slideInLeft 0.6s ease forwards;
            opacity: 0;
        }

        .webinars__Institutes_place__partner_item:nth-child(1) {
            animation-delay: 0.3s;
        }

        .webinars__Institutes_place__partner_item:nth-child(2) {
            animation-delay: 0.5s;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .webinars__Institutes_place__institute_image_container {
            animation: slideInRight 0.6s ease 0.4s forwards;
            opacity: 0;
            transform: translateX(30px);
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }