body {
    margin: 0;
    font-family: Arial, sans-serif;
	background: #eaeaea;
}
header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #035e1e;
}
nav {
    position: relative;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #035e1e;
    font-size: 1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #0077ff;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #035e1e;
    transition: 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}
.mobile-menu a {
    padding: 10px 20px;
    display: block;
}
.mobile-menu.show {
    display: flex;
}
@media (max-width: 600px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: flex;
    }
   .hero-text h1,
   .hero-text h2 {
       font-size: 1.4rem;
       color: #ffffff !important;
   }
   .page-headline h1,
   .page-headline h2 {
       color: #035e1e !important;
   }
   .service-grid {
        grid-template-columns: 1fr;
    }
	.footer-columns {
		flex-direction: column;
		text-align: center;
	}
	.intro-with-image {
        flex-direction: column;
        text-align: center;
    }
    .intro-image img {
        width: 100%;
        max-width: 300px;
    }
}
h1, h2 {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    color: #035e1e;
}
.content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
.section {
    padding: 10px;
    margin-bottom: 10px;
}
.section-wrapper {
    width: 100%;
    padding: 40px 0;
}

.section-bg-white {
    background: #ffffff;
}

.section-bg-lightgray {
    background: #f4f4f4;
}

.section-bg-blue {
    background: #eef4ff;
}

.section-bg-green {
    background: #0a4721;
    color: white;
}
.intro-with-image {
	max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 30px;
	margin: 0 auto;
}

.intro-image img {
    width: 100%;
	max-width: 350px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.intro-text {
    flex: 1;
}
.intro h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #035e1e;
    text-align: left;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 1.05rem;
    color: #035e1e;
}
.hero {
    width: 100%;
	height: 60vh;
	min-height: 350px;
	max-height: 700px; 
    max-width: none;     /* remove 1000px limit */
    margin: 0 0 0 0;  /* remove centering */
    overflow: hidden;
	position: relative;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-text h1,
.hero-text h2 {
    color: #ffffff !important;
}
.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}
.page-headline {
    max-width: 1000px;
    margin: 40px auto 20px;
    padding: 0 20px;
    text-align: left;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.page-headline h1 {
    font-size: 2rem;
    color: #035e1e !important;
}

.page-headline h2 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #035e1e !important;
}
.services h3 {
    font-size: 1.6rem;
    color: #035e1e;
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.icon {
    margin-right: 10px;
    font-size: 1.3rem;
}
.service-box {
    background: #f7f7f7;
    border-left: 4px solid #035e1e;
    padding: 14px;
    font-size: 1.05rem;
    color: #333;
    border-radius: 6px;
    transition: all 0.2s ease;
	display: flex;
    align-items: center;
}

.service-box:hover {
    background: #ebebeb;
    border-left-color: #0077ff;
    cursor: pointer;
}
.testimonials h3 {
    font-size: 1.6rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial {
    border-left: 4px solid #035e1e;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	background-color: #ffffff;
}

.testimonial blockquote {
    font-style: italic;
    color: #444;
    margin: 0 0 10px;
}

.client {
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

.review-source {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #ffffff;
}

.review-source a {
    color: #f4b400;
    text-decoration: none;
    font-weight: bold;
}

.review-source a:hover {
    color: #0077ff;
}
.stars {
    color: #f4b400;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.15);
}
footer {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}
.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
}
.footer-col {
	max-width: 264px;
}
.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #035e1e;
}

.footer-col p {
    margin: 4px 0;
    font-size: 0.95rem;
    color: #555;
}

.footer-col a {
    color: #035e1e;
    text-decoration: none;
}

.footer-col a:hover {
    color: #0077ff;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* Contact Page Layout */
.contact-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-box,
.contact-form-box {
    flex: 1;
    background: #ffffff;
	max-width: 400px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-info-box h3,
.contact-form-box h3 {
    color: #035e1e;
    margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
	max-width: 380px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #035e1e;
    outline: none;
}

.contact-form-box button {
    background: #035e1e;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form-box button:hover {
    background: #0077ff;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Mobile Contact Page Adjustment */
@media (max-width: 600px) {
    .contact-flex {
        flex-direction: column;
    }
}
