


/* Header-to-content spacing now lives in base.css (.content-section)
   so every interior page gets the same tightened gap. */

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper h2 {
    color: #1B1B1B;
    font-size: 2.2rem;
    margin-bottom: 30px;
    border-bottom: 4px solid  #9a4b1d;   
    /* border-bottom: 3px solid #86BC25; */
    padding-bottom: 10px;
}

.content-wrapper h3 {
    color: #1B1B1B;
    font-size: 1.6rem;
    margin: 24px 0 12px 0;
}

.content-wrapper h3:first-child {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333333;
    text-align: justify;
}

.content-wrapper ul {
    /* Softened from the solid #9a4b1d — same brand brown, dialled down so
       the blocks read as highlights rather than heavy slabs. */
    background-color: rgba(154, 75, 29, 0.78);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid  #F4ECE6;
    /* border-left: 4px solid #86BC25; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-wrapper ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333333;
    /* Keep bullets INSIDE the padded box so every row starts at the same
       distance from the container's left border. */
    list-style-position: inside;
}

.content-wrapper ul li:last-child {
    margin-bottom: 0;
}

.footer-bottom {
        width: 100%;
        text-align: center;
    }

/* Style for the link inside the footer */
.site-footer a {
  color: #fff;              /* Make the link white to stand out */
  text-decoration: none;   /* Remove the default underline */
  font-weight: bold;       /* Make the font a bit bolder */
  margin-bottom: 10px;     /* Add some space below the link */
  display: inline-block;   /* Allows the margin-bottom to work */
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper h2 {
        font-size: 1.8rem;
    }

    .content-wrapper h3 {
        font-size: 1.4rem;
        margin: 20px 0 10px 0;
    }

    .content-wrapper ul {
        padding: 20px;
    }
    
    .content-wrapper p,
    .content-wrapper ul li {
        font-size: 1rem;
    }
}
