body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #e0f7fa, #fff);
  color: #333;
  
}

header {
  background: #00bcd4;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

.profile {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 3px solid #b0bec5;
}

.profile img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
}

.profile-text {
  flex: 1;
  min-width: 250px;
}

.profile h2 {
  margin-top: 0;
  color: #00796b;
}


.career {
    background: #fff8e1;
    padding: 30px 20px;
    border-left: 10px solid #ffd54f;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
  }
  
  .career h2 {
    color: #ff6f00;
    margin-top: 0;
    margin-bottom: 15px;
  }
  
  .career ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .career li {
    padding: 10px 0;
    border-bottom: 1px solid #ffe082;
    font-size: 1.05em;
  }
  
  .career li:last-child {
    border-bottom: none;
  }
  
  .year {
    font-weight: bold;
    color: #f57c00;
    margin-right: 10px;
  }

  .video-intro {
    background-color: #f4f8d8;
    border-left: 6px solid #F067B4;
    padding: 15px 20px;
    margin: 40px 0 30px;
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.6;
  }
  
  .video-intro p {
    margin: 0;
    color: #333;
  }
  
  

.video {
  background: #f1f8e9;
  border-left: 10px solid #aed581;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.video:hover {
  background: #dcedc8;
}

.video h3 {
  margin-top: 0;
  color: #558b2f;
}

.video-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.video img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.video p {
  flex: 1;
  min-width: 250px;
  margin: 0;
}

.video a {
  display: inline-block;
  margin-top: 10px;
  color: #33691e;
  text-decoration: none;
  font-weight: bold;
}

.video a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
  background: #eeeeee;
  color: #888;
  font-size: 0.9em;
  margin-top: 50px;
}

@media (max-width: 700px) {
  .profile {
    flex-direction: column;
    text-align: center;
  }

  .profile img {
    margin: 0 0 20px 0;
  }

  .video-content {
    flex-direction: column;
    align-items: center;
  }

  .video img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.video2 {
    background: #f1f8e9;
    border-left: 10px solid #F6416C;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
  }

  .video2:hover {
    background: #dcedc8;
  }
  
  .video2 h3 {
    margin-top: 0;
    color: #558b2f;
  }
  
  .video2-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
  }
  
  .video2 img {
    width: 320px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  
  .video2 p {
    flex: 1;
    min-width: 250px;
    margin: 0;
  }
  
  .video2 a {
    display: inline-block;
    margin-top: 10px;
    color: #33691e;
    text-decoration: none;
    font-weight: bold;
  }
  
  .video2 a:hover {
    text-decoration: underline;
  }





  .slideshow-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #fafafa;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 20px 0;
    box-sizing: border-box;
    }
    
    .slideshow-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 30s linear infinite;
    }
    
    .slideshow-track img {
    width: 200px;
    height: auto;
    margin-right: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    @keyframes scrollLoop {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
    }