/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: linear-gradient(45deg, #32a852, #32a8c3);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar .menu {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar .menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.navbar .menu li a:hover {
    text-decoration: underline;
}

.section {
    padding: 40px 20px;
    text-align: center;
}

.home {
    background: #e8f5e9;
}

.about, .testimonials, .blog {
    background: #f1f8e9;
}

.services, .gallery {
    background: #e3f2fd;
}

.contact {
    background: #ffecb3;
}

footer {
    text-align: center;
    padding: 10px;
    background: #263238;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .menu {
        flex-direction: column;
        align-items: center;
    }

    .navbar .menu li {
        margin: 5px 0;
    }
}
.responsive-img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px auto;
    max-width: 400px;
}

form input, form textarea, form button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #32a852;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #2c934a;
}
/* Add this to styles.css */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.image-grid a {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s;
}

.image-grid img:hover {
    transform: scale(1.05);
}
