html, body {
    height: 100%;
    margin: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: black;
    background: white;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: white;
}

main {
    flex: 1;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #106300;
    padding: 16px 32px;
}

.main-nav a,
.call-us {
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
}

.main-nav a.active {
    color: white;
}

.main-nav a:hover {
    color: white;
    background-color: #0c4e00;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.call-us:hover {
    background-color: #0c4e00;
    color: white;
    text-decoration: none;
}

.phone-icon {
    height: 20px;
    margin-right: 8px;
}

.banner {
    background: black;
    color: white;
    padding: 32px 32px;
    text-align: center;
}

.banner img {
    width: 25%;
    height: 25%;
    object-fit: cover;
    border-radius: 8px;
}

.content {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}
  
.sidebar {
    width: 30%;
    background: white;
    padding: 1rem;
    border: 1px solid #ddd;
}

.call-box h2 {
    color: blue;
}
  
.call-box ul {
    list-style: none;
    padding-left: 0;
}
  
.hours h3 {
    margin-top: 2rem;
}

.main-text {
    width: 70%;
    background: white;
    padding: 1rem;
    border: 1px solid #ddd;
}

.main-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.main-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.main-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #106300;
    font-weight: bold;
}

.services-list {
    width: 25%;
    border-right: 1px solid #ddd;
    padding-right: 1rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.services-list li.selected {
    background-color: #106300;
    color: white;
}

.services-details {
    width: 75%;
    padding-left: 2rem;
}

.services-section {
    display: flex;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    height: 40px;
}

.service-section {
    display: none;
}

.service-section.active {
    display: block;
}

h1 {
  text-align: center;
  margin: 35px 0 20px 0 !important;
}
