
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}
.nav-container {
    display:  flex;
    flex-flow: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    margin: 1rem;
    background-color: #f9f9f9;
}
.nav-items {
    padding: 0.5rem 1.2rem;
    background-color: #f9fafb; 
    border: 1px solid #e5e7eb;
    color: #374151;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    display: block;
    
}
.nav-items:hover {
    border-radius: 4px;
    background-color: #f3f4f6;
    border-color: #d1d5db;
    text-align: center;
    color: #000000;
    flex-grow: 1;
    text-decoration: none;
    
}
.text {
    background-color: #ffffff;
    margin: 1rem;
    color: #222222;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.text:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: box-shadow 0.3s ease;
}

.herobanner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}
.herobanner img{
        width: 200px;
        height: fit-content;
        border-radius: 12px;
        
}
.section-title {
  font-size: 1.5rem;    
  color: #1f2937;
  margin-bottom: 1rem;
  border-left: 4px solid #3b82f6; 
  padding-left: 0.75rem;   
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.details {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-top: 0.25rem;
    gap: 0.5rem;
}
.details .heading{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
}
.details .heading h4{
    flex: 1;
    margin: 0;
    font: 1rem;
}
.details p {
    margin: 0rem;
}
.details ul {
    padding: 0rem 1.5rem 0rem 1.5rem;
    margin: 1rem 0rem;
    line-height: 1.5;
}
.details ul li{
    margin-bottom: 0.25rem;
}

.divider {
  border: none;
  border-top: 1px solid #e0e0e0; 
  margin: 2rem 0;           
}

a{
    text-decoration: none;
}

@media (min-width: 768px) {
    .nav-container{
        flex-flow: row;
        justify-content: space-between;
        gap: 1.5rem;
    }
    .herobanner {
        flex-direction: row;
        gap: 2rem;
    }
}
@media (max-width: 480px) {
  .details .heading {
    flex-direction: column;
    text-align: left;
  }
}