.hero-section {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 60px 20px;
   text-align: center;
   margin-bottom: 50px;
}

.hero-section h1 {
   font-size: 48px;
   font-weight: bold;
   margin-bottom: 20px;
}

.hero-section p {
   font-size: 20px;
   margin-bottom: 0;
   opacity: 0.95;
}

.cards-container {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 40px;
   padding: 40px 20px;
   min-height: 500px;
}

.doc-card {
   width: 100%;
   max-width: 350px;
   background: white;
   border-radius: 12px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
   overflow: hidden;
   transition: all 0.3s ease;
   cursor: pointer;
   display: flex;
   flex-direction: column;
   height: 100%;
}

.doc-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.doc-card:hover .btn-link {
   text-decoration: none;
   color: white;
}

.card-header {
   padding: 40px 30px;
   text-align: center;
}

.card-header.admin {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.card-header.tenant {
   background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
}

.card-header i {
   font-size: 48px;
   display: block;
   margin-bottom: 15px;
}

.card-header h2 {
   font-size: 28px;
   font-weight: bold;
   margin: 0;
}

.card-body {
   padding: 30px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.card-body p {
   color: #666;
   line-height: 1.6;
   margin-bottom: 0;
   font-size: 16px;
}

.card-footer {
   padding: 20px 30px;
   border-top: 1px solid #eee;
   text-align: center;
   margin-top: auto;
}

.btn-link {
   display: inline-block;
   padding: 12px 35px;
   background: #667eea;
   color: white;
   border-radius: 5px;
   font-weight: bold;
   transition: all 0.3s ease;
   border: none;
   font-size: 14px;
   cursor: pointer;
   text-decoration: none;
}

.btn-link:hover {
   background: #764ba2;
   color: white;
   transform: scale(1.05);
}

.doc-card:nth-child(2) .btn-link {
   background: #f5576c;
}

.doc-card:nth-child(2) .btn-link:hover {
   background: #f093fb;
}

.doc-card {
   user-select: none;
}

@media (max-width: 768px) {
   .hero-section h1 {
      font-size: 36px;
   }

   .hero-section p {
      font-size: 18px;
   }

   .cards-container {
      gap: 20px;
   }
}
.btn-link{
   color: #fff !important;
   background: #667eea !important;
}