/* Header Styles */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    background: #fff;
    border-top: 8px solid #4CD43B;
    font-family: 'Montserrat', Arial, sans-serif;
}

.header-left .logo {
    height: 60px;
}

.header-nav {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 8px;
    transition: color 0.2s;
}

.header-nav a.active {
    color: #c8102e;
}

.header-nav .dropdown {
    color: #009444;
    font-size: 0.8em;
    margin-left: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right .social img {
    width: 28px;
    height: 28px;
    margin-right: 4px;
}

.call-btn {
    border: 2px solid #c8102e;
    color: #c8102e;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 8px;
    transition: background 0.2s, color 0.2s;
}

.call-btn:hover {
    background: #c8102e;
    color: #fff;
}

.quote-btn {
    background: #c8102e;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.quote-btn:hover {
    background: #a00d23;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 55%;
    margin: 0 auto;
}

header {
    background: #333;
    color: white;
    padding: 2rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}
.logo-img {
  width: 60px; /* adjust as needed */
  margin-right: 10px;
}

header .logo h1 {
    font-size: 2rem;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.hero {
    background: url('images/green-forest-aerial-view-photo.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 3rem 0;
    height: 500px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #4CD43B;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #3b9e2b;
}

.how-it-works h2 {
    padding: 20px;
}

.how-it-works, .services, .why-choose-us {
    padding: 3rem 0;
    text-align: center;
}

.how-it-works .steps, .why-choose-us .reasons {
    display: flex;
    justify-content: space-around;
}

.step, .reason {
    width: 30%;
}

.step img, .reason img {
    max-width: 50px;
    margin-bottom: 1rem;
}

.services ul {
    list-style-type: none;
    margin-bottom: 1rem;
}

.services ul li {
    font-size: 1.25rem;
    margin: 10px 0;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
