* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-name {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.3s ease;
}

nav a:hover::before {
  left: 0;
}

nav a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.breadcrumbs {
  padding: 1rem 20px;
  background: white;
  margin-bottom: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  animation: fadeIn 0.8s ease-in;
}

.breadcrumbs a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #764ba2;
  text-decoration: underline;
}

main {
  background: white;
  margin: 2rem auto;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

h2 {
  color: #667eea;
  margin: 2rem 0 1rem 0;
  font-size: 2rem;
  border-bottom: 3px solid #764ba2;
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

h2:hover {
  color: #764ba2;
}

h3 {
  color: #555;
  margin: 1.5rem 0 0.8rem 0;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

h3:hover {
  color: #667eea;
}

p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

a {
  color: #667eea;
  transition: all 0.3s ease;
}

a:hover {
  color: #764ba2;
  text-shadow: 0 0 8px rgba(102,126,234,0.3);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  border-radius: 8px;
  animation: fadeIn 1s ease-in;
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
}

tbody tr {
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: linear-gradient(90deg, #f5f7fa 0%, #e8ecf3 100%);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

tbody tr:nth-child(even) {
  background: #f9f9f9;
}

tbody tr:nth-child(even):hover {
  background: linear-gradient(90deg, #f5f7fa 0%, #e8ecf3 100%);
}

.faq-item {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f9f9f9;
  border-left: 4px solid #667eea;
  border-radius: 5px;
  transition: all 0.3s ease;
  animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.faq-item:hover {
  background: white;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transform: translateX(5px);
  border-left-color: #764ba2;
}

section {
  margin: 3rem 0;
}

footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
}

footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .site-name {
    font-size: 1.6rem;
  }
  
  nav {
    gap: 1rem;
  }
  
  main {
    padding: 2rem 1rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  table {
    font-size: 0.9rem;
  }
  
  th, td {
    padding: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}