body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  max-width: 100%;
  line-height: 1.6;
  color: #333;
  padding: 0;
  overflow-x: hidden;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  padding: 20px 0;
  text-align: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f9f9f9;
}

.logo {
  width: auto;
  height: auto;
  max-width: 800px;
  max-height: 350px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .logo {
    width: 100%;
    max-width: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
}

.content-wrapper {
  margin-top: 20px;
}

.navbar {
  background-color: #2e7d32;
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.navbar a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 15px 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  flex-grow: 1;
  text-align: center;
}

.navbar a.home-link {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  height: 35px;
  width: auto;
  vertical-align: middle;
}

.navbar a:hover {
  background-color: #1b5e20;
}

h1 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 30px;
}

h2 {
  color: #2e7d32;
  margin-top: 30px;
}

h3 {
  color: #1b5e20;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 40px;
}

.hero h2 {
  margin-top: 0;
  font-size: clamp(22px, 5vw, 28px);
  line-height: 1.3;
}

.hero p {
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1b5e20;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.feature {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-section {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.about-section ul {
  margin-bottom: 30px;
}

.about-section li {
  margin-bottom: 10px;
}

.secondary-button {
  display: inline-block;
  background-color: #4caf50;
  color: white;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.secondary-button:hover {
  background-color: #2e7d32;
}

.hero-image {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 25%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.gallery {
  margin-bottom: 50px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img:hover {
  transform: scale(1.02);
}

.testimonials {
  margin-bottom: 50px;
}

.testimonial {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 60px;
  line-height: 1;
  color: rgba(46, 125, 50, 0.1);
  font-family: Georgia, serif;
}

.testimonial p {
  font-style: italic;
  padding-left: 10px;
  margin-bottom: 15px;
  position: relative;
}

.customer {
  font-weight: bold;
  text-align: right;
  margin-top: 15px;
  font-style: normal !important;
  color: #2e7d32;
}

/* Page Intro Styles */
.page-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

/* Services Page Styles */
.service-section {
  margin-bottom: 60px;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.service-section.alt {
  direction: rtl;
}

.service-section.alt .service-content {
  direction: ltr;
}

.service-content {
  padding: 30px;
}

.service-image {
  display: flex;
  min-height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .service-section, 
  .service-section.alt {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .service-image {
    height: 250px; /* Slightly smaller height on mobile */
  }
}

.service-list {
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 15px;
}

.additional-services {
  margin-bottom: 60px;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.additional-service {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.additional-service h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.cta-section {
  background-color: #f5f5f5;
  text-align: center;
  padding: 40px;
  border-radius: 8px;
  margin: 60px 0;
}

/* Pricing Page Styles */
.pricing-info-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 50px;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pricing-image {
  height: 100%;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-content {
  padding: 30px;
}

.pricing-content h2 {
  margin-top: 0;
  color: #2e7d32;
  margin-bottom: 20px;
}

.pricing-content ul {
  margin-bottom: 20px;
}

.pricing-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}

.service-categories {
  margin-bottom: 50px;
}

.service-categories h2 {
  text-align: center;
  margin-bottom: 30px;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-category {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-category h3 {
  color: #2e7d32;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(46, 125, 50, 0.2);
}

.service-category ul {
  margin: 0;
  padding-left: 20px;
}

.service-category li {
  margin-bottom: 8px;
}

.quote-process {
  margin-bottom: 60px;
}

.quote-process h2 {
  text-align: center;
  margin-bottom: 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.process-step {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #2e7d32;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto 15px;
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2e7d32;
}

.step-content p {
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .pricing-info-section {
    grid-template-columns: 1fr;
  }
  
  .pricing-image {
    min-height: 200px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

/* Contact Page Styles */
.contact-container {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info, .contact-form-container {
  flex: 1;
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method h3 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.icon {
  margin-right: 10px;
  font-style: normal;
}

.service-area {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.contact-direct-container {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.contact-option {
  display: flex;
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
}

.contact-icon .icon {
  font-size: 28px;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.contact-option-content {
  flex: 1;
}

.contact-option-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2e7d32;
}

.contact-option-content p {
  margin-bottom: 15px;
  color: #555;
}

.contact-button {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #1b5e20;
}

.contact-divider {
  position: relative;
  text-align: center;
  margin: 0;
}

.contact-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ddd;
  z-index: 1;
}

.contact-divider span {
  position: relative;
  background-color: #f5f5f5;
  padding: 0 15px;
  color: #777;
  z-index: 2;
}

.contact-help {
  background-color: rgba(46, 125, 50, 0.05);
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
  border-left: 4px solid #2e7d32;
}

.contact-help h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #2e7d32;
}

.contact-help-content p {
  margin-bottom: 15px;
}

.contact-help-content ul {
  margin-left: 20px;
  margin-bottom: 0;
}

.contact-help-content li {
  margin-bottom: 8px;
}

.map-section {
  margin-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  height: 400px;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #eee;
}

.consultation-cta {
  background-color: #f5f5f5;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 60px;
}

/* Thank You Page Styles */
.thank-you-container {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.thank-you-content {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  margin-top: 30px;
  line-height: 1.8;
}

.thank-you-content p {
  margin-bottom: 20px;
}

.thank-you-content .cta-button {
  margin-top: 20px;
  display: inline-block;
}

.message-summary {
  background-color: rgba(46, 125, 50, 0.05);
  padding: 20px;
  border-radius: 6px;
  margin: 30px 0;
  text-align: left;
  border-left: 3px solid #2e7d32;
}

.message-summary h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #2e7d32;
}

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

.summary-details strong {
  display: inline-block;
  width: 80px;
}

.demo-note {
  font-style: italic;
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}

/* Responsive design */
@media (max-width: 768px) {  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .navbar {
    justify-content: stretch;
  }
  
  .navbar a {
    padding: 12px 10px;
    font-size: 15px;
    flex: 1;
  }
  
  .navbar a.home-link {
    padding: 8px;
  }
  
  .nav-logo {
    height: 30px;
  }
  
  .cta-button, .secondary-button, .contact-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 15px;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .feature-image,
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .service-image {
    display: flex;
    height: 300px; /* Set a fixed height for all service images */
    overflow: hidden; /* Hide any overflow from cropped images */
  }
  
  .additional-services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .page-intro {
    padding: 0 15px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-option {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto 15px;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 30px;
    padding: 0;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-links li {
    margin: 0;
  }
}

/* Footer Styles */
footer {
  background-color: #2e7d32;
  color: white;
  padding: 40px 0 0;
  margin-top: 60px;
  width: 100%;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px 30px;
}

.footer-section {
  padding: 0 15px;
}

.footer-section h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  margin: 8px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  background-color: #1b5e20;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

