body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f6f1;
  color: #4a3c2a;
}
h2 {
  color: #b06e20;
}
.section {
  padding: 60px 0;
}
.section img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  
}

.custom-img {
  width: 600px;
  height: 400px;
  object-fit: cover; /* keeps image from stretching, crops it nicely */
  border-radius: 8px; /* optional for rounded edges */
  
}


.col-md-6.d-flex {
  min-height: 100%; /* Ensures it stretches full height if needed */
}

.text-block {
  padding: 1rem 0; /* Optional: adds breathing room */
}


.quote-box {
  background-color: #fff3cd;
  padding: 30px;
  border-left: 5px solid #b06e20;
  border-radius: 8px;
  font-style: italic;
}
.card img {
  object-fit: cover;
  height: 200px;
}

.position-relative.hm {
    position: relative;
    text-align: center;
  }
  .hm .cta-btn {
    display: inline-block;
    width: 100%;
    max-width: 200px;
       
    margin-top: 10px;
    margin-bottom: 10px;

    padding: 10px 20px;
    background-color: #a5745c;
    text-align: center;
    font-weight: bold;
    padding: 10px 10px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
 
  .custom-list {
    list-style: none;
    padding-left: 1.5em; /* space to allow dash */
    margin: 0;
  }
  
  .custom-list li {
    position: relative;
    padding-left: 1em;
     /* pulls first line back to align with dash */
  }
  
  .custom-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #000; /* change if needed */
    font-weight: bold;
  }
  
  