:root {
  --primary-color: #004d40;
  --primary-light: #e8dcb5;
  --text-color: #1a1a1a;
  --text-muted: #5a607f;
  --bg-color: #f5f7fa;
  --card-bg: #ffffff;
  --border-color: #e0e4e8;
  --accent-color: #d67715; /* A nice orange to complement teal */
}

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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.main-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Banner */
.banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 77, 64, 0.2);
}

.banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.banner .subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Tagline */
.tagline {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.tagline .highlight {
  color: var(--primary-color);
}

/* Info Section */
.info-section {
  display: flex;
  justify-content: center;
}

.info-card {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.info-card .intro-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.shop-now-wrapper {
  margin-top: 1rem;
}

.shop-now {
  display: inline-flex;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shop-now:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  margin-top:20px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 77, 64, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.value-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Vision & Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 1rem;
  margin-top:20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(0, 77, 64, 0.1);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.policy-list li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.policy-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.policy-list strong {
  color: var(--text-color);
  font-weight: 600;
}

.policy-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
}

.mission-vision-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-vision-wrapper .content-block p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }
  
  .vision-mission {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .info-card {
    padding: 2rem;
  }
}

/* Team section (if uncommented) */
.team {
  margin-top: 3rem;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-color);
}
