* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

header.hero {
    background: linear-gradient(135deg, #2e7d32, #66bb6a);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

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

.tagline {
    font-size: 1.3em;
    margin-bottom: 1em;
}

.btn {
    background-color: #fff;
    color: #2e7d32;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.about p {
    text-align: center;
    font-size: 1.1em;
}

.services p {
    text-align: center;
}

.services .service {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.services .service li{
    margin-left: 15px;
}
.services .service h3 {
    color: #388e3c;
    margin-bottom: 5px;
}

.price {
    display: block;
    margin-top: 8px;
    color: #555;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

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

.contact ul {
    list-style: none;
    text-align: center;
}

.contact p {
    text-align: center;
}
.contact li {
    margin: 8px 0;
}

footer {
    text-align: center;
    background-color: #2e7d32;
    color: white;
    padding: 15px 0;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2em;
    }
}



/* New styles can be added below */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  width: 100%;
}

.contact-form button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #388e3c;
}
