* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.nav-item {
  text-decoration: none;
  color: rgb(187, 180, 180);
  margin-top: 2rem;
}
.nav-item:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  scale: 1.1;
}
.nav-item#panel:hover {
  color: rgb(54, 174, 90);
  text-decoration: underline;
  scale: 1.1;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #282828;
  color: #fff;
}

header {
  background: #454545;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(202, 174, 174, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  background: linear-gradient(90deg, #ececec, #919191);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

header nav {
  margin-top: 10px;
}

header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

header nav a:hover {
  color: #4facfe;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: url("https://i.pinimg.com/originals/2c/e2/e0/2ce2e0d8e2eeb0f8bfedf5503a346d4f.gif")
    no-repeat center center/cover;
  color: #fff;
  animation: fadeIn 2s;
  position: relative;
}

.hero h2 {
  font-size: 2.5rem;
  margin: 20px 0;
}

.hero p {
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  background: #4facfe;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: scale(1.1);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 50px 20px;
  background: #282828;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: #454545;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-decoration: none;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item img {
  max-width: 80px;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #4facfe;
  text-decoration: none;
}

.feature-item p {
  font-size: 1.1rem;
  color: white;
}
.feature-item span {
  /* font-size: 1.1rem; */
  color: white;
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #454545;
  color: #fff;
  margin-top: 50px;
}

/* contact */
.contact-section {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  text-align: center;
}

.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

button {
  background: #4facfe;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #2196f3;
}

#formMessage {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
}

.success {
  background: #d4edda;
  color: #155724;
}

.error {
  background: #f8d7da;
  color: #721c24;
}

.cf-turnstile {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

