/* General Reset */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fefefe;
}

:root {
  --primary-color: #b35c00;
  --accent-color: #ffae00;
  --neutral-light: #f8f8f8;
  --neutral-dark: #3a3a3a;
}

/* Icon Circles */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  background-color: #fff4e1;
  color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.05);
}

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, #3d2200, #b35c00);
  color: #fff;
  padding: 6rem 1rem 4rem;
  text-align: center;
}

.about-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f9f9f9;
}

.about-hero .btn {
  background-color: #fff;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-hero .btn:hover {
  background-color: #ffe5b4;
  color: #3d2200;
}

.about-icon i {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.why-choose-us .section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.why-choose-us .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  background: var(--neutral-light);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-item .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #3d2200;
}

.why-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Vision & Mission */
.vision-mission {
  background-color: #fff7ec;
  padding: 5rem 1rem;
  text-align: center;
}

.vision-mission .section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vm-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-5px);
}

.vm-box .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vm-box h3 {
  font-size: 1.3rem;
  color: #3d2200;
  margin-bottom: 0.5rem;
}

.vm-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Our Team */
.our-team {
  background-color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.our-team .section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.our-team .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-icon i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #3d2200;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Call to Action */
.work-with-us {
  background: linear-gradient(135deg, #3d2200, #b35c00);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.work-with-us .container {
  max-width: 800px;
  margin: 0 auto;
}

.work-with-us .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.work-with-us .cta-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.work-with-us .btn {
  background-color: #fff;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.work-with-us .btn:hover {
  background-color: #ffe5b4;
  color: #3d2200;
}