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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

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

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #d35400;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d35400;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://sawalipureveg.vercel.app/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
}

.breadcrumb li {
  margin: 0 5px;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb li:after {
  content: "/";
  margin-left: 10px;
  color: #ccc;
}

.breadcrumb li:last-child:after {
  content: "";
}

/* About Content */
.about-content {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #d35400;
  margin-bottom: 20px;
  font-size: 2rem;
}

p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Values Section */
.values-section {
  background-color: #fff8f0;
  padding: 60px 0;
  margin: 60px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
  color: #d35400;
  margin: 15px 0;
}

/* Team Section */
.team-section {
  margin: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 5px solid #fff8f0;
}

/* CTA Section */
.cta-section {
  background-color: #d35400;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin: 60px 0;
}

.cta-section h2 {
  color: white;
}

.btn {
  display: inline-block;
  background: white;
  color: #d35400;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn:hover {
  background: #ffefe5;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer a {
  color: #ffefe5;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav ul {
    margin-top: 15px;
  }

  nav ul li {
    margin: 0 10px;
  }

  .page-header {
    padding: 60px 20px;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
