* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
  width: 250px;
  background-color: #840a0a;
  color: white;
  padding: 20px;
  height: 100vh;
  position: fixed;
}

.sidebar h2 {
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 15px;
}

.sidebar ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #000000;
}

/* Main Content Styling */
.content {
  margin-left: 250px;
  padding: 40px;
  background-color: #ecf0f1;
  flex: 1;
}




/* Main Content in Black Theme */
.content {
  margin-left: 250px;
  background-color: #000;
  color: #fff;
  padding: 60px 40px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
  animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 span {
  color: #ed3131;
  text-shadow: 0 0 10px #ec340f;
}

.hero p {
  font-size: 1.3rem;
  color: #bbb;
  margin-bottom: 30px;
  animation: fadeIn 2s ease;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  background: #c50d0d;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  background: #710303;
}

.btn-outline {
  background: transparent;
  color: #fb1c1c;
  border: 2px solid #bc1a1a;
}

.btn-outline:hover {
  background: #6b0505;
  color: rgb(164, 12, 12);
  color: white;
  border: none;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .content {
    margin-left: 0;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}