    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body, html {
      width: 100%;
      height: 100%;
      overflow: hidden;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .video-background {
      position: fixed;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      z-index: 0;
    }
    .video-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }
    .video-wrapper iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw; /* 16:9 aspect ratio */
      min-height: 100vh;
      min-width: 177.77vh; /* 16:9 aspect ratio */
      transform: translate(-50%, -50%);
    }
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.35);
      z-index: 1;
    }
    .content {
      position: relative;
      z-index: 10;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .language-switcher {
      position: fixed;
      top: 2rem;
      right: 2rem;
      z-index: 50;
    }
    .language-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 9999px;
      text-decoration: none;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: all 300ms ease;
      cursor: pointer;
    }
    .language-button:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(34, 197, 94, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
    }
    .language-button svg {
      width: 1rem;
      height: 1rem;
      transition: transform 300ms ease;
    }
    .language-button:hover svg {
      transform: translateX(2px);
    }
    .info-card {
      max-width: 900px;
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 24px;
      padding: 3rem;
      box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
      animation: fadeInUp 800ms ease-out 300ms both;
      overflow-y: auto;
      max-height: 90vh;
    }
    .card-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .card-description {
      margin-bottom: 2rem;
    }
    .card-description p {
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 1rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    .card-description p:last-child {
      margin-bottom: 0;
    }
	.card-contact p {
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.95);
      margin-top: 2rem;
	  padding-bottom: 2rem; 
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
	.card-contact a {
      color: #22c55e;
      filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.4));
    }	
    .services-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      transition: all 300ms ease;
      cursor: default;
    }
/*    .service-item:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(34, 197, 94, 0.4);
      transform: translateX(8px);
      box-shadow: 0 4px 16px rgba(34, 197, 94, 0.2);
    }
*/
    .service-icon {
      width: 24px;
      height: 24px;
      min-width: 24px;
      color: #22c55e;
      filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.4));
      margin-top: 2px;
    }
    .service-item span {
      font-size: clamp(0.95rem, 1.8vw, 1.05rem);
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.5;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    /* Scrollbar styling */
    .info-card::-webkit-scrollbar {
      width: 8px;
    }
    .info-card::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
    }
    .info-card::-webkit-scrollbar-thumb {
      background: rgba(34, 197, 94, 0.5);
      border-radius: 10px;
    }
    .info-card::-webkit-scrollbar-thumb:hover {
      background: rgba(34, 197, 94, 0.7);
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .language-switcher {
        top: 1rem;
        right: 1rem;
      }
      .language-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
      }
      .info-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
      }
      .card-title {
        margin-bottom: 1.25rem;
      }
      .services-list {
        gap: 0.875rem;
      }
      .service-item {
        padding: 0.875rem;
      }
      .service-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
      }
    }
    @media (max-width: 480px) {
      .language-switcher {
        top: 0.75rem;
        right: 0.75rem;
      }
      .language-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
      }
      .info-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
      }
      .card-description {
        margin-bottom: 1.5rem;
      }
      .services-list {
        margin-top: 1.5rem;
        gap: 0.75rem;
      }
      .service-item {
        padding: 0.75rem;
        gap: 0.75rem;
      }
    }
    @media (min-width: 640px) {
      .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
    }
    @media (min-width: 1024px) {
      .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
      }
    }
    /* Fade in animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }