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

/* body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937 !important;
  background-color: #ffffff;
} */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-container {
  max-width: 800px !important;
  margin-left: 100px !important;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
}

/* Header */
.header {
  /* background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)),
    url("./demos/furniture/images/service-hero.jpg");
  color: white !important;
  padding: 70px 0;
  text-align: center;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.header h1 {
  font-size: 3rem;
  font-weight: 600;
  /* margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 30px; */
  color: white !important;
}

.header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  /* margin-bottom: 20px;
  margin-left: 40px;
  margin-right: 20px; */
  color: white !important;
}

.header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  /* margin: 0 40px; */
  color: rgb(231, 231, 231) !important;
}

/* Main Content */
.main-content {
  padding: 80px 0;
}

.service-section {
  margin-bottom: 80px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid #0ea5e9;
}

.section-icon {
  font-size: 2rem;
  margin-right: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #273e83 !important;
  margin-bottom: 0px !important;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #273e83 !important;
  margin-bottom: 32px;
  font-weight: 500;
}

.section-description {
  font-size: 1.125rem;
  color: #273e83 !important;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.service-image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.service-image img {
  height: 50vh;
  border-radius: 20px;
}

.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #0ea5e9;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #273e83 !important;
  margin-bottom: 12px;
}

.service-card p {
  color: #273e83 !important;
  /* font-size: 1rem; */
  line-height: 1.6;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #0ea5e9;
}

.feature-item::before {
  content: "✓";
  color: #0ea5e9;
  font-weight: bold;
  margin-right: 12px;
  font-size: 1.125rem;
}

.feature-item span {
  color: #273e83 !important;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 60px 0;
  margin: 80px 0;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #273e83 !important;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
  gap: 24px;
}

.benefit-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

/* .benefit-card::before {
  content: "✅";
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
} */

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

/* Contact Section */
.contact-section {
  background: #273e83;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-section p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: #0ea5e9;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #0284c7;
}

.contact-container h2 {
  color: white !important;
}

.contact-container p {
  color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 16px;
  }

  .container {
    padding: 0 16px;
  }

  @media (max-width: 900px) {
    .benefits-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    }
  }
}
