body {
      font-family: Arial, sans-serif;
      color: #39455D;
      margin: 0;
      background-color: #f5f5f5;
    }

    .header-container {
      background-color: #110805;
      display: flex;
      justify-content: flex-start;
      overflow: hidden;
    }

    .header-image {
      display: block;
      margin: 0;
      padding: 0;
    }

    h1 {
      text-align: center;
      margin: 40px;
    }

    h2 {
      margin: 5px 0 20px;
    }

    .container {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    section {
      background-color: #fff;
      padding: 20px 50px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      box-sizing: border-box;
      width: 100%;
    }

    .block-content {
      display: flex;
      flex-direction: row;
      gap: 40px;
      align-items: flex-start;
    }

    .container img {
      max-width: 360px;
      border-radius: 6px;
      display: block;
      padding-top: 9px;
    }

    table {
      border-collapse: collapse;
      width: 100%;
	  font-size: 14px;
    }

    thead th {
      border-bottom: 2px solid #ddd;
      padding: 6px 0px;
      font-weight: bold;
      font-size: 0.95rem;
    }

    .module-table th.module,
    .module-table td.module {
      text-align: left;
    }

    .module-table th.duration,
    .module-table td.duration {
      text-align: right;
      white-space: nowrap;
      width: 70px;
    }

    .module-table tbody td {
      padding: 5px 0;
    }

    tbody tr:hover {
      background-color: rgba(249, 176, 165, 0.2);
    }

    a {
      color: #39455D;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    a:hover {
      /*text-decoration: underline;*/
    }

    .play-button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background-color: #F9B0A5;
      border: 1px solid #F67D70;
      transition: background-color 0.3s, border-color 0.3s;
      min-width: 25px;
    }

    .play-button svg {
      width: 14px;
      height: 14px;
      fill: #505E7F;
    }

    a:hover .play-button {
      background-color: #F67D70;
      border-color: #F67D70;
    }
	
	.footer {
	height: 50px;
	margin-top: 0px;
	float:left;
	font-size:12px;
	text-align:center;
	width:100%;
}

.language-switcher {
    /*position: absolute;
    top: 108px;
    right: 10px;*/
    font-family: sans-serif;
    font-size: 11pt;
	text-align: center;
	margin-top: 15px;
  }

  .language-switcher a {
    background-color: #fff;
    text-decoration: none;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
	border: 1px solid #ddd;
	/*box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);*/
  }

  .language-switcher a:hover {
    background-color: #e0e0e0;
	border: 1px solid #aaa;
  }

  .language-switcher a.active {
    font-weight: bold;
    background-color: rgba(229, 12, 10, 0.8);
    color: white;
  }


    @media (max-width: 700px) {
      .block-content {
        flex-direction: column;
      }
    }