body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2e3a59;
  padding: 1rem 2rem;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: none;
  gap: 2rem;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #2e3a59;
  width: 200px;
  padding: 1rem;
  border-radius: 0 0 0 8px;
  z-index: 999;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-links.open {
  display: flex;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.nav-toggle .hamburger {
  width: 25px;
  height: 3px;
  background-color: #fff;
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.nav-toggle .hamburger::before {
  top: -8px;
}

.nav-toggle .hamburger::after {
  top: 8px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .nav-links li a {
    color: white;
    font-size: 1.2rem;
  }

  .header-image {
    padding-bottom: 3rem;
  }

  .header-text {
    padding-bottom: 4rem;
  }
}

@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    width: auto;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }
}

.header-image {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  color: white;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border-radius: 8px;
  padding-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 2rem;
  background: #00a86b;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #007b50;
}

main {
  padding: 2rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #2e3a59;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #1c2539;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  background: #e9ecef;
  justify-content: space-around;
  text-align: center;
}

.highlight-box {
  flex: 1 1 250px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.why-choose-home {
  padding: 2rem;
  background: #f0f2f5;
}

.why-choose-home h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.choose-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.choose-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.testimonials {
  padding: 2rem;
  background: #fff;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonials footer {
  font-weight: bold;
  color: #444;
}

footer {
  padding: 1rem 2rem;
  text-align: center;
  background: #2e3a59;
  color: white;
}

footer a {
  color: #ddd;
}

.services-hero {
  background: #2e3a59;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.service-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 2rem;
}

.service-card {
  flex: 1 1 300px;
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.comparison-section {
  padding: 2rem;
  background: #fff;
  text-align: center;
}

.comparison {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.compare-box {
  flex: 1 1 300px;
  background: #e9ecef;
  padding: 1.5rem;
  border-radius: 6px;
}

.compare-box ul {
  text-align: left;
}

.how-it-works {
  background: #f9f9f9;
  padding: 2rem;
  text-align: center;
}

.how-it-works ol {
  list-style-position: inside;
  font-size: 1.1rem;
  padding-left: 0;
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background: #00a86b;
  color: white;
}

.cta-section .cta-btn {
  background: #fff;
  color: #00a86b;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  display: inline-block;
}

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.about-highlights .highlight {
  flex: 1;
  min-width: 250px;
}

.about-highlights ul {
  list-style: none;
  padding: 0;
}

.about-highlights ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-image {
  margin-top: 40px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.7;
}

.about-page h2, .about-page h3 {
  margin-top: 1.5rem;
  color: #333;
}

.about-page ul {
  list-style: none;
  padding-left: 0;
}

.about-page ul li::before {
  content: "✔ ";
  color: green;
  margin-right: 0.5rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #2c7a7b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #225e5e;
}

.contact-hero {
  background-color: #f3f3f3;
  padding: 2rem;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.contact-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fafafa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form-section {
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  display: block;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.map-section {
  padding: 2rem;
  text-align: center;
}
