* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background: #f5f5f0;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

/* Header */
.header {
  background: #1b3a2d;
  color: white;
  padding: 30px 20px 25px;
  text-align: center;
}

.header .logo {
  height: 270px;
  margin-bottom: 8px;
}

.header h1 {
  font-size: 2.6em;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.header p {
  font-size: 1.1em;
  color: #a8c5a0;
  font-style: italic;
}

/* Nav */
nav {
  background: #2e7d32;
  padding: 0;
  text-align: center;
}

nav a {
  display: inline-block;
  color: white;
  padding: 14px 28px;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover {
  background: #1b5e20;
  text-decoration: none;
}

nav a.active {
  background: #1b5e20;
}

/* Main content */
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero section */
.hero {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2em;
  color: #1b3a2d;
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 12px;
  font-size: 1.05em;
}

.hero-img {
  flex: 0 0 380px;
}

.hero-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Offer banner */
.offer-banner {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.offer-banner h3 {
  font-size: 1.5em;
  margin-bottom: 5px;
}

.offer-banner p {
  font-size: 1em;
  color: #c8e6c9;
}

/* Image row */
.image-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.image-card {
  flex: 1;
  text-align: center;
}

.image-card img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

.image-card span {
  font-size: 0.9em;
  color: #666;
}

/* Section headings */
h2.section-title {
  font-size: 1.8em;
  color: #1b3a2d;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #2e7d32;
}

/* About page */
.about-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.about-grid .text {
  flex: 1;
}

.about-grid .text p {
  margin-bottom: 12px;
}

.about-grid .photo {
  flex: 0 0 320px;
}

.about-grid .photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.info-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.info-box h3 {
  color: #2e7d32;
  margin-bottom: 12px;
  font-size: 1.3em;
}

.info-box ul {
  padding-left: 20px;
}

.info-box ul li {
  margin-bottom: 6px;
}

.hours-table {
  border-collapse: collapse;
  margin-top: 10px;
}

.hours-table td {
  padding: 6px 20px 6px 0;
  border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
  font-weight: 600;
}

/* Services page */
.service-card {
  display: flex;
  gap: 25px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.service-card img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card .details {
  flex: 1;
}

.service-card .details h3 {
  font-size: 1.4em;
  color: #1b3a2d;
  margin-bottom: 10px;
}

.service-card .details p {
  margin-bottom: 10px;
}

.service-card .price {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95em;
}

.cta-box {
  background: #fff3e0;
  border: 2px solid #f9a825;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}

.cta-box p {
  font-size: 1.1em;
}

/* Contact page */
.contact-grid {
  display: flex;
  gap: 30px;
}

.contact-grid .form-side {
  flex: 1;
}

.contact-grid .info-side {
  flex: 0 0 340px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
}

.contact-grid .info-side h3 {
  color: #2e7d32;
  margin-bottom: 12px;
  font-size: 1.2em;
}

.contact-grid .info-side p {
  margin-bottom: 10px;
}

.contact-grid .info-side img {
  width: 100%;
  border-radius: 6px;
  margin-top: 15px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1b3a2d;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  font-family: inherit;
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.btn {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #1b5e20;
}

/* Footer */
.footer {
  background: #1b3a2d;
  color: #a8c5a0;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9em;
}
