/* Header */
.header {
  background-color: #fff;
}

.brand span {
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;    
  justify-content: center;  
  padding: 20px;
  background-color: white; 
  color: #000;
}

/* Hero-text */
.hero-text h2 {
  color: #000;
}

.hero-text p {
  color: #555;
}

.btn-xl {
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
}

/* Hero image with circle */
.hero-image img {
  max-width: 300px;
  border-radius: 50%;
  border: 6px solid #0d6efd; 
}

/* Footer */
.footer {
    background-color: #212529; 
    color: white; 
    flex-shrink: 0;      
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #dee2e6;  
}