.announcement img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.zoomed {
    transform: scale(1.5);
}

.announcement img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #f1c40f;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}


.faq-section {
  max-width: 800px;
  margin: 0;
  padding: 0 20px; /* Add padding to balance left and right spacing */
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  background: #f9f9f9;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f1f1f1;
  border: none;
  padding: 15px 20px; /* Adjust padding to align text better */
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: bold;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #ddd;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: normal;
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 4px solid #f1c40f;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question:after {
  content: '+';
  font-size: 20px;
}

.faq-item.active .faq-question:after {
  content: '-';
}

.toggle-light-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background-color: #f0f0f0; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.toggle-light-btn .icon {
  font-size: 18px; 
  transition: color 0.3s ease, transform 0.2s ease;
}

.toggle-light-btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.1); 
}

body.dark-mode .toggle-light-btn {
  background-color: #101920; 
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .toggle-light-btn .icon {
  color: #ffeb3b; 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .toggle-light-btn {
    width: 21px;
    height: 21px;
    padding: 4px;
  }

  .toggle-light-btn .icon {
    font-size: 15px;
  }
}

body.dark-mode .logincontainer .alert-success {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

body.dark-mode .logincontainer .alert-success + p {
    background: #1f2933;
    color: #e5e7eb;
    padding-top: 20px;
    border-radius: 0 0 6px 6px;
}

