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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

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

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

.r5t8n1m {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h2j9k4p {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
}

.h2j9k4p:hover {
  transform: scale(1.05);
}

.p3l7m9n {
  display: flex;
  gap: 30px;
  list-style: none;
}

.p3l7m9n a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 5px;
}

.p3l7m9n a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.w8v5n2x {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.w8v5n2x::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.3"/></svg>');
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(100px) translateY(100px);
  }
}

.w8v5n2x h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.w8v5n2x p {
  font-size: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

.k6m3p9t {
  padding: 60px 0;
}

.d8n4v7x {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #2c3e50;
  position: relative;
  padding-bottom: 15px;
}

.d8n4v7x::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
}

.s2l9k4m {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.f7x3n8p {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  animation: fadeIn 0.6s ease-out;
}

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

.f7x3n8p:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.t9m5k2n {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.f7x3n8p:hover .t9m5k2n {
  transform: scale(1.1);
}

.v3p8l4x {
  padding: 25px;
}

.v3p8l4x h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 12px;
}

.v3p8l4x p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.b6n9m3k {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.b6n9m3k:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.y4k7n2m {
  background: #2c3e50;
  color: white;
  padding: 50px 0;
  margin-top: 60px;
  text-align: center;
}

.y4k7n2m p {
  margin: 10px 0;
}

.g5x8p3n {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  font-size: 20px;
}

.g5x8p3n:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.g5x8p3n.r9k4m7p {
  display: flex;
}

.n8m3v5k {
  padding: 20px 0;
  background: #f0f0f0;
  margin-bottom: 30px;
}

.n8m3v5k ul {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
}

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

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

.n8m3v5k span {
  color: #666;
}

.j4p9l2x {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.j4p9l2x h1 {
  font-size: 38px;
  color: #2c3e50;
  margin-bottom: 30px;
  line-height: 1.3;
}

.j4p9l2x h2 {
  font-size: 28px;
  color: #34495e;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #667eea;
}

.j4p9l2x p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
}

.j4p9l2x img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.c3k9m6p {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.c3k9m6p img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.c3k9m6p img:hover {
  transform: scale(1.05);
}

.l7n4x8m {
  background: white;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.l7n4x8m h3 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 22px;
}

.l7n4x8m ul {
  list-style-position: inside;
  color: #555;
  line-height: 2;
}

@media (max-width: 768px) {
  .p3l7m9n {
    flex-direction: column;
    gap: 10px;
  }

  .w8v5n2x h1 {
    font-size: 32px;
  }

  .s2l9k4m {
    grid-template-columns: 1fr;
  }

  .j4p9l2x h1 {
    font-size: 28px;
  }

  .c3k9m6p {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
