header { 
  background-color: 
  #04AA6D; 
  color: white; 
  padding: 20px; 
  text-align: center; 
} 

main { 
  padding: 40px; 
  min-height: 60vh; 
  background-color: #fff; 
} 

footer { 
  background-color: #fff;
  color: white; 
  text-align: center; 
  padding: 15px; 
}

.button-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;
    gap: 50px; /* space between buttons */
    margin-top: 50px;
}

.button-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #ccc;
    border-radius: 10px;
	    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.button-card:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.button-card img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.button-text {
    display: flex;
    flex-direction: column;
}

.button-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.button-description {
    font-size: 13px;
    color: #666;
    margin: 0;
}
