/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fdf5;
    color: #333;
}

a {
    text-decoration: none;
    color: #2e7d32;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #e8f5e9;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo h1 {
    margin: 0;
    color: #2e7d32;
}

header .tagline {
    font-size: 0.9em;
    color: #558b2f;
}

nav a {
    margin-left: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(46,125,50,0.6), rgba(255,255,255,0.2)), url('images/solar-hero.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 25px;
}

.btn {
    background: #2e7d32;
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
}

/* Sections */
section {
    padding: 60px 50px;
}

h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 40px;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

form input, form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
}

form button {
    background: #2e7d32;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

/* Footer */
footer {
    background: #e8f5e9;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #2e7d32;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
}

/* Testimonials */
.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonial-cards .card {
    width: 300px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav a {
        margin-left: 0;
        margin-right: 15px;
    }
    .cards, .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}
/* Logo Image */
.logo-img {
    height: 60px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}
.logo {
    display: flex;
    align-items: center;
}
