:root {
    --primary: #f39c12;
    --charcoal: #33363b; /* Softer than black */
    --light-bg: #e9ecef; /* The grey side-color */
    --white: #ffffff;
    --text: #4a4a4a;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Side background color */
.site-bg { 
    background-color: var(--light-bg); 
}

/* The "Page" itself */
.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 40px rgba(0,0,0,0.05); /* Subtle shadow for depth */
}

.inner-container { padding: 0 40px; }

/* Navbar - Using charcoal instead of black */
.navbar { background: var(--charcoal); padding: 1rem 0; border-bottom: 3px solid var(--primary); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 0 40px; }
.logo { font-size: 1.2rem; font-weight: 700; color: #fff; text-decoration: none; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; }
.nav-links a { color: #ddd; text-decoration: none; margin-left: 20px; font-size: 0.85rem; text-transform: uppercase; }

/* Banner - Smaller Height */
.banner { 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url(../media/banner.jpg); 
    background-size: cover; background-position: center;
    height: 250px; /* Reduced height */
    display: flex; align-items: center; justify-content: center;
}
.banner-center { text-align: center; color: #fff; }
.badge { background: var(--primary); color: #000; padding: 3px 10px; font-size: 0.7rem; font-weight: 700; border-radius: 2px; margin-bottom: 10px; display: inline-block; }
.banner h1 { font-size: 2.5rem; margin-bottom: 20px; }
/* .banner h2 {margin-top: 20px;} */

/* Understated Buttons */
.banner-ctas { display: flex; gap: 10px; justify-content: center; }
.btn-primary { background: var(--primary); color: #000; padding: 12px 25px; text-decoration: none; font-weight: 700; border-radius: 4px; }
.btn-secondary { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid #fff; padding: 11px 25px; text-decoration: none; font-weight: 700; border-radius: 4px; }

/* Sections */
.section-cards { margin-top: 40px; margin-bottom: 0px; }
.section-padding { padding: 40px 0; }
.section-title { font-size: 1.8rem; color: var(--charcoal); text-align: left; max-width: 800px; margin: 0 auto; margin-bottom: 15px; }
.intro-text { text-align: left; max-width: 800px; margin: 0 auto; color: #666; }

/* Cards - Understated styling */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #fdfdfd; padding: 30px; border: 1px solid #eee; border-radius: 4px; text-align: center; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; color: var(--charcoal); }

/* Image Showcase */
.image-showcase { margin-bottom: 40px; }
/*.feature-img { width: 65%; height: 100%; object-fit: cover; border-radius: 4px;  display: block; margin: 0 auto; } */




/* Desktop */
.feature-img {
    width: 65%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}



.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Info / Contact area */
.info-section { background: #fbfbfb; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 40px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; max-width: 1000px; margin: 0 auto; }
.info-box h3 { font-size: 0.9rem; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.info-box p { font-size: 0.95rem; line-height: 1.6; }

    .footer { text-align: center; padding: 30px; font-size: 0.8rem; color: #999; border-top: 1px solid #eee; }
    .rdw-badge img {
        max-width: 150px;
        width: 100%;
        height: auto;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .site-bg { padding: 0; }
    .page-wrapper { border-radius: 0; }
    .info-grid { grid-template-columns: 1fr; }
    .inner-container { padding: 0 20px; }
    .banner h1 { font-size: 1.8rem; }
    .feature-img { width: 100%; }
}


.map-embed {
    max-width: 800px;
    margin: 20px auto;
    border-radius: 4px;
    overflow: hidden;
}

.map-embed iframe {
    display: block;
    width: 100%;
}