/* General Styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #fddcd5;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #E76E50;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

nav a.active,
nav a:hover {
  color: #E76E50;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #fddcd5 0%, #fff 100%);
  padding: 60px 0;

}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 20px;
  max-width: 400px;
}

.btn {
  background: #E76E50;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
}

/* Features Section */
.features {
  text-align: center;
  padding: 60px 0;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.features p {
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature i {
  font-size: 30px;
  color: #333333;
  margin-bottom: 10px;
}

/* About Section */
.about {
  background: #fff;
  padding: 60px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.about-image,
.about-text {
  flex: 1 1 45%;
}

.about-image img {
  max-width: 50%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-text li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.about-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #E76E50;
}