body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0d0d0d, #050505);
  color: #f0f0f0;
  overflow-x: hidden;
}

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

.home-header {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.home-header h1 {
  font-size: 42px;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00c6ff, 0 0 20px #0072ff;
}

.home-header p {
  font-size: 18px;
  margin-top: 15px;
  color: #bbb;
}

.services-banner-column {
  padding-left: 12px;
  margin-bottom: 20px;
}

.services-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40px;          
  display: flex;
  align-items: center;
}

.services-banner-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}


.home-main {
  padding: 50px 20px;
  max-width: 950px;
  margin: 0 auto;
  animation: fadeIn 1.3s ease-out;
}

.intro h2,
.faq h2 {
  font-size: 28px;
  color: #00c6ff;
  text-transform: uppercase;
  border-left: 4px solid #0072ff;
  padding-left: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #0072ff;
  padding: 15px;
  border-radius: 8px;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease;
}

.intro p:hover {
  transform: scale(1.02);
}

.faq {
  margin-top: 50px;
  animation: fadeIn 1.8s ease-out;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid rgba(0, 114, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 15px rgba(0, 114, 255, 0.3);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #00c6ff;
  padding: 18px;
  border: none;
  font-size: 17px;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
}

.faq-question:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #ccc;
  border-top: 1px solid rgba(0, 114, 255, 0.2);
  animation: fadeIn 0.4s ease-in-out;
}

.faq-answer.show {
  display: block;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0072ff, #00c6ff);
  border-radius: 5px;
}

a {
  color: #00c6ff;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  text-shadow: 0 0 10px #00c6ff;
  color: #fff;
}

