.elementor-237 .elementor-element.elementor-element-595681e{--spacer-size:50px;}body.elementor-page-237:not(.elementor-motion-effects-element-type-background), body.elementor-page-237 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-d2dcbcf *//* General Container */
.support-page-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Text Section */
.text-section {
  max-width: 50%;
  text-align: left;
}

.text-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.text-section p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.text-section ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1.5rem;
  color: #555;
}

.text-section ul li {
  margin-bottom: 0.5rem;
}

.learning-center-button {
  display: inline-block;
  padding: 15px 25px;
  font-size: 1rem;
  color: #fff;
  background-color: #0073e6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.learning-center-button:hover {
  background-color: #005bb5;
}

/* Floating Image */
.floating-image {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Chatbot Section */
.chatbot-container {
  width: 50%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.chatbot-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .support-page-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .text-section,
  .chatbot-container {
    max-width: 100%;
    text-align: center;
  }

  .floating-image {
    display: none; /* Hide the floating image on mobile */
  }

  .chatbot-container {
    width: 90%; /* Ensure the chatbox fits within the screen */
    padding: 10px;
  }

  .chatbot-iframe {
    height: 350px; /* Adjust height for smaller screens */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4c58a00 *//* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.learning-center {
    padding: 20px;
}

.learning-center h2 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

.thumbnails-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.thumbnail {
    display: block;
    flex: 1 1 calc(33.33% - 10px); /* Default: 3 thumbnails per row */
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    touch-action: manipulation; /* Enhances touch interaction on mobile */
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */

/* Tablet View: Two thumbnails per row */
@media screen and (max-width: 768px) {
    .thumbnail {
        flex: 1 1 calc(50% - 10px);
    }
}

/* Mobile View: One thumbnail per row */
@media screen and (max-width: 480px) {
    .thumbnail {
        flex: 1 1 100%;
    }
}/* End custom CSS */