* {
    box-sizing: border-box;
    /* overflow-x: hidden;  <-- REMOVE THIS LINE */
}

/* ADD THIS: Apply it here instead */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
body {
    color: black;
    background: linear-gradient(135deg, #fdf8f0 0%, #fff 50%, #fdf5f5 100%);
    /* TEXT STYLE: Updated to Montserrat */
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 400;
    font-style: normal;
}

h1 {
    overflow-y: hidden;
    /* TEXT STYLE: Updated to Libre Baskerville */
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(40px, 5vw, 48px);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

h2 {
    overflow-y: hidden;
    /* TEXT STYLE: Updated to Libre Baskerville */
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(30px, 5vw, 34px);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

h3 {
    /* TEXT STYLE: Updated to Libre Baskerville */
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(22px, 5vw, 26px);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: hidden;
}

ol {
    /* TEXT STYLE: Updated to Montserrat */
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 5vw, 17px);
}

hr {
    width: 100%;
}

.content-container {
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    padding-top: 120px;
}

.List-Container li {
    margin-bottom: 30px;
    line-height: 1.5rem;
   list-style-position: inside;
    font-family: 'Montserrat', sans-serif;
}

.List ol {
    max-width: 650px;
    text-align: left;
    margin: 0 auto;
}

footer {
    background-color:#f9f9f7;
    color:black;
    padding: 40px 20px 20px 20px;
    font-family: "Libre Baskerville", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* ... Rest of your footer and media queries remain identical ... */

.footerLogoContainer {
  display: flex;
  flex-direction: column;
  align-items: center;    
  width: 100%;           
  margin-bottom: 30px;
}

.footerLogo {
  width: 180px;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 32px;
 border-bottom:1px solid #66666639;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

footer a:hover {
  color: #a55b2d;
}

.footer-bottom {
  max-width: 1100px;
  margin: 25px auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #666;
}

.footer-bottom a {
  display: inline;
  margin-left: 10px;
  font-size: 12px;
}
@media (min-width: 768px) {
    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}