.logo {
      width: 250px;
      height: auto;
    }

    @media (max-width: 767px) {
      .logo {
        width: 100px;
        height: 100px;
      }

  
    }
    
    
    .welcome-section {
  text-align: center;
  padding: 60px 20px;
}

.welcome-title {
  font-size: 48px;
  font-weight: 800;
  color: #2b2f38;
  margin-bottom: 10px;
}

.welcome-subtitle {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 50px;
}

.option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration:none !important;
  gap: 20px;
}
.welcome-img {
  height: 300px;
}

.welcome-btn {
  background: #ffd645;
  font-weight: 700;
  padding: 12px 20px;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
}

.welcome-btn:hover {
  background: #ffcc00;
  transform: translateY(-2px);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .welcome-title {
    font-size: 32px;
  }

 
}


   

    .site-footer {
    background-color: #f2f2f2;
    text-align: center;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
}

.footer-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-text a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: #777;
    font-size: 14px;
}