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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdf8f3;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

header {
  background-color: #fff;
  border-bottom: 2px solid #eee;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #e76f51;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #e76f51;
  background-color: #fdf8f3;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #e76f51;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero p, .hero .subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.section {
  padding: 2rem 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section h2 {
  color: #e76f51;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.section h3 {
  color: #e76f51;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.section p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
}

.two-column, .three-column {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.two-column {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.three-column {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.column-box {
  background-color: #fdf8f3;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #e76f51;
}

.column-box h3 {
  color: #e76f51;
  margin-bottom: 1rem;
}

.column-box p {
  color: #444;
}

.icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #fdf8f3;
  border-radius: 8px;
  margin: 2rem 0;
}

.cta-section h3 {
  color: #e76f51;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  background-color: #e76f51;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #d45a3d;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background-color: transparent;
  color: #e76f51;
  border: 2px solid #e76f51;
}

.cta-button.secondary:hover {
  background-color: #e76f51;
  color: white;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 0.5rem 0;
  color: #444;
  position: relative;
  padding-left: 1.5rem;
}

ul li:before {
  content: "✓";
  color: #e76f51;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.package {
  background-color: #fff;
  border: 2px solid #e76f51;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.package:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.2);
}

.package h3 {
  color: #e76f51;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.package .price {
  font-size: 2rem;
  color: #e76f51;
  font-weight: 600;
  margin: 1rem 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e76f51;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #e76f51;
}

.timeline-item h3 {
  color: #e76f51;
  margin-bottom: 0.5rem;
}

.contact-info {
  background-color: #fdf8f3;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-info h3 {
  color: #e76f51;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #444;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #e76f51;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f5f5f5;
  font-size: 0.9rem;
  color: #777;
  margin-top: 3rem;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav {
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .two-column, .three-column {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .packages {
    grid-template-columns: 1fr;
  }
}