.home {
    font-size: 1.5rem;
    line-height: 2rem; 
}

.home h4 {
    background-color:#5c3913;
    text-align:center;
    margin-top:1rem;
    margin-bottom: 0.5rem;

}

.home .hero {
    margin-top: 8rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    line-height: 4.5rem;
    font-weight: bold;
    text-align:center;
}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
  }
  .text-section {
    flex: 1;
}
.image-section {
    width: 200px; /* Fixed circular size */
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  
.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures full coverage without stretching */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
#content img{
    border-radius: 8px;
    max-width: 100%;
    height: auto;
  }