/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #F7F7F7; /* Light gray background */
  color: #000000; /* Black text */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #854836, #6a382a); /* Gradient from dark brown to darker brown */
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

header p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.call-button {
  background: #FFB22C; /* Bright orange */
  color: #000000; /* Black text */
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.call-button:hover {
  background: #e69c23; /* Darker orange */
}

/* Services Section */
.services {
  padding: 60px 0;
  background: #ffffff; /* White background */
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #854836; /* Dark brown */
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #F7F7F7; /* Light gray background */
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #854836; /* Dark brown */
}

.service-item p {
  font-size: 1rem;
  color: #000000; /* Black text */
}

/* About Section */
.about {
  padding: 60px 0;
  background: #F7F7F7; /* Light gray background */
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #854836; /* Dark brown */
}

.about p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: #000000; /* Black text */
}

.responsive-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border: 5px solid #FFB22C; /* Bright orange */
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta {
  padding: 60px 0;
  background: linear-gradient(135deg, #854836, #6a382a); /* Gradient from dark brown to darker brown */
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #000000; /* Black */
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}