.default-body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: rgb(153, 123, 102);
    background-color: #e4dbd8 !important;
    overflow-x: hidden;
}

.container {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: rgb(66, 48, 36);
}

.title {
    font-size: 4.5rem;
    line-height: 1;
    width: 66%;
    font-weight: 700;
}

.subtitle {
    color: rgb(153, 123, 102);
}

.bg-center {
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.hero-image {
    height: 60vh;
    width: 100vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    margin: 0px;
    z-index: 9;
}

.hero-image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
    background: linear-gradient(to right, 
        rgba(229, 231, 235, 0.8) 0%,
        rgba(229, 231, 235, 0.3) 70%,
        rgba(229, 231, 235, 0.1) 100%
    );
    z-index: 10;
    align-items: center;
    padding-left: 2rem;
}

.header {
    width: 100%;
    height: 105px;
    z-index: 11;
    background-color: #e4dbd8;
}

.hover-shift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.hover-shift:hover {
    transform: translate(5px, 5px) scale(1.05);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.hero-image-container {
    position:relative;
    height: 60vh;
}

/* Inner page content (About Us, Contact, FAQ) */
.page-content {
    padding: 3rem 1rem 4rem;
    max-width: 720px;
    margin: 0 auto;
}

.page-title {
    margin-bottom: 0.5rem;
}

.page-content .lead {
    font-size: 1.25rem;
    color: rgb(153, 123, 102);
    margin-bottom: 1.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

.contact-list a {
    color: rgb(66, 48, 36);
    text-decoration: underline;
}

.contact-list a:hover {
    color: rgb(100, 72, 56);
}

.faq-section {
    margin-bottom: 2rem;
}

.faq-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.faq-more {
    margin-top: 2rem;
}

.faq-more a {
    color: rgb(66, 48, 36);
    font-weight: 600;
    text-decoration: underline;
}

.faq-more a:hover {
    color: rgb(100, 72, 56);
}

/* Footer – slightly darker/cooler than main body (#e4dbd8) */
.site-footer {
    margin-top: auto;
    padding: 1.5rem 0;
    background-color: #c9bfb9;
    border-top: 1px solid rgba(66, 48, 36, 0.12);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgb(66, 48, 36);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgb(100, 72, 56);
    text-decoration: underline;
}

@media only screen and (min-width: 992px) {
    .hero-image {
        height: 80vh;
        width: 100vw;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: absolute;
        top: 105px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        margin: 0px;
        z-index: 9;
    }

    .hero-image-container {
        position:relative;
        height: 80vh;
    }
}



