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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #FFE5B4 0%, #87CEEB 100%);
  min-height: 100vh;
}

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

/* Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo h2 {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFE5B4 0%, #87CEEB 100%);
  /* padding: 220px 0 200px; */
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,215,0,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,215,0,0.1)"/></svg>');
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #8B4513;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: #654321;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #FF8C00;
  padding: 15px 30px;
  text-decoration: none;
  border: 2px solid #FF8C00;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  position: relative;
}

.hero-image img {
  width: 665px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  max-height: 100%;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin: 40px 20px;
  border-radius: 20px;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8B4513;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: linear-gradient(135deg, #FFF8DC, #F0F8FF);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(255, 140, 0, 0.1);
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #8B4513;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #654321;
  line-height: 1.6;
}

/* Partnership Highlight */
.partnership-highlight {
  background: linear-gradient(135deg, #FF8C00, #FFD700);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.partnership-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.partnership-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.partnership-highlight .btn-primary {
  background: white;
  color: #FF8C00;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.partnership-highlight .btn-primary:hover {
  background: #F0F8FF;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: rgba(139, 69, 19, 0.9);
  color: white;
  padding: 60px 0 20px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #FFD700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #FFF8DC;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: #FFF8DC;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .features,
  .partnership-highlight {
    margin: 20px 10px;
  }
}