/* Global */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0b0c10;
  color: #eee;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #00ffcc;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  color: #00ffcc;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: #00ffcc;
  color: #000;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn:hover {
  background: #00cc99;
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #00ffcc;
}
.section.dark {
  background: #111;
  border-top: 2px solid #00ffcc20;
  border-bottom: 2px solid #00ffcc20;
}

/* Cards */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: #0f1115;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  box-shadow: 0 0 15px #00ffcc20;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  background: #0f1115;
  margin: 10px 0;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffcc20;
}
.faq-item h3 {
  margin-bottom: 10px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.blog-post {
  background: #0f1115;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px #00ffcc20;
}
.blog-post a {
  color: #00ffcc;
  font-weight: bold;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #00ffcc20, #111);
}
.cta h2 {
  margin-bottom: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0f1115;
  border-top: 2px solid #00ffcc20;
}
