

.outercontainer .container-inside {
  display: flex;
  width: 900px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  flex-wrap: wrap;
}
.outercontainer .container-inside header {
flex: 1 100%;
  border-bottom: 1px solid #96979a;
text-align: center;
}
.outercontainer .container-inside h1 {
flex: 1 100%;
  border-bottom: 0 solid #96979a;
  padding: 12px 0;
  font-size: 1.4rem;
text-align: center;
}

.container-inside-left {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.container-inside-right {
flex: 1;
min-width: 300px;
padding: 40px 30px;
display: flex;
align-items: center;
justify-content: center;
}



/* Tablet view (iPad and similar) */
@media only screen and (max-width: 1024px) {
  .outercontainer .container-inside {
    width: 92vw;
  }
.container-inside-left {
  width: 45vw;
  position: relative;

}

.container-inside-left .logo {
  position: absolute;
}
  .container-inside-right {
      width: 55vw;
  }
}

/* ======== */

.video-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

  /* Video element styling */
  .video-player {
      width: 100%;
      height: auto;
      max-height: 70vh;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .video-container {
        padding: 10px;
    }

    .video-player {
        border-radius: 4px;
    }
}

       /* List container */
        .list-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        /* List item styling */
        .list-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 8px 30px;
            border-radius: 2.75rem;
            border: 3px solid rgb(0, 0, 0);
            transition: background-color 0.3s ease;
        }

		.list-item a {
			display: flex;
			align-items: center;      /* Vertically align image and text */
			gap: 10px;                /* Space between image and text */
			padding: 8px 30px;
			width: 100%;              /* Makes the link fill the list item */
			color: inherit;           /* Keep text color consistent */
			text-decoration: none;
			font-size: 1.8rem;
		}

		.list-item img {
			width: 32px;              /* Adjust size as needed */
			height: 32px;
			object-fit: contain;      /* Keeps image ratio */
		}


      .list-item.tkinder {
      transition: background 0.3s ease;
      }
      .list-item.tkinder:hover {
      background: color-mix(in srgb, var(--base-color), white 15%);
      }
      .list-item.tkinder:hover a {
      color: rgb(0, 0, 0);
        transition: background 0.3s ease;
      }


        /* Image styling */
        .list-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 15px;
            transition: transform 0.3s ease;
        }

        /* Image hover animation */
        .list-item:hover img {
            transform: scale(1.1);
        }

        /* Link text styling */
        .list-item a {
            text-decoration: none;
            color: #333;
            font-size: 1.6rem;
			font-weight: 600;
            font-family: Arial, sans-serif;
        }

        .list-item a:hover {
            color: #000000;
        }

        /* Responsive adjustments */
        @media screen and (max-width: 480px) {
            .list-container {
                padding: 10px;
            }

            .list-item {
                padding: 8px;
                margin-bottom: 10px;
            }

            .list-item img {
                width: 50px;
                height: 50px;
                margin-right: 10px;
            }

            .list-item a {
                font-size: 1.1rem;
            }
        }