* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}

.clm-title {
  height: 55vh;
  background: linear-gradient(135deg, rgba(4, 53, 109, 0.95), rgba(10, 75, 150, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.clm-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.clm-title h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.clm-title p {
  max-width: 900px;
  color: #f0f8ff;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.clm-title span {
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  display: inline-block;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.3); }
  to { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.6); }
}

section {
  padding: 5vh 2rem;
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(4, 53, 109, 0.3), transparent);
  transform: translateX(-50%);
}

section p:first-child {
  text-align: center;
  font-size: 2rem;
  color: rgba(4, 53, 109, 0.84);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

section p:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(4, 53, 109, 0.84), rgba(255, 215, 0, 0.8));
  transform: translateX(-50%);
  border-radius: 2px;
}

ul.list {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1rem;
  width: 100%;
  overflow: hidden;
}

ul.list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 1rem 1rem 1rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 248, 255, 0.6));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(4, 53, 109, 0.1);
}

ul.list li:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(4, 53, 109, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.8));
}

ul.list li::before {
  content: '●';
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(4, 53, 109, 0.84);
  font-size: 1.5rem;
  line-height: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

ul.list li strong {
  color: rgba(4, 53, 109, 0.9);
  font-weight: 600;
}

.second-section .item-1,
.second-section .item-2 {
  max-width: 800px;
  margin: 1.5rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, rgba(240, 248, 255, 0.8));
  border-left: 5px solid rgba(4, 53, 109, 0.84);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: calc(100% - 4rem);
}

.second-section .item-1::before,
.second-section .item-2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(4, 53, 109, 0.05), transparent);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.second-section .item-1:hover,
.second-section .item-2:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 40px rgba(4, 53, 109, 0.2);
  border-left-color: #ffd700;
}

.second-section .item-1 p,
.second-section .item-2 p {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  position: relative;
  z-index: 1;
}

.second-section .item-1 strong,
.second-section .item-2 strong {
  color: rgba(4, 53, 109, 0.9);
  font-weight: 600;
  font-size: 1.15rem;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .clm-title {
    height: 60vh;
    padding: 1.5rem;
  }
  
  .clm-title h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .clm-title p {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  section {
    padding: 4vh 1.5rem;
  }
  
  section p:first-child {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  ul.list {
    padding-left: 0;
  }
  
  ul.list li {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  ul.list li:hover {
    transform: translateX(3px);
  }
  
  .second-section .item-1,
  .second-section .item-2 {
    margin: 1rem auto;
    padding: 1.5rem;
    width: calc(100% - 3rem);
  }
  
  .second-section .item-1:hover,
  .second-section .item-2:hover {
    transform: translateY(-3px) scale(1.005);
  }
}

@media (max-width: 480px) {
  .clm-title h1 {
    font-size: 1.8rem;
  }
  
  .clm-title p {
    font-size: 1rem;
  }
  
  section p:first-child {
    font-size: 1.4rem;
  }
  
  ul.list li {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
  
  ul.list li:hover {
    transform: translateX(2px);
  }
  
  .second-section .item-1,
  .second-section .item-2 {
    padding: 1.2rem;
    width: calc(100% - 2rem);
  }
  
  .second-section .item-1:hover,
  .second-section .item-2:hover {
    transform: translateY(-2px) scale(1.002);
  }
}

/* Smooth scrolling enhancement */
html {
  scroll-behavior: smooth;
}

/* Loading animation for better perceived performance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out;
}

/* Focus states for accessibility */
ul.list li:focus-within {
  outline: 2px solid rgba(4, 53, 109, 0.5);
  outline-offset: 2px;
}

.second-section .item-1:focus-within,
.second-section .item-2:focus-within {
  outline: 2px solid rgba(4, 53, 109, 0.5);
  outline-offset: 2px;
}