/* style.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
}

#navbar h1 {
  display: inline-block;
  color: #ff7f50;
  font-size: 1.8rem;
  margin-right: 2rem;
}

.nav-links a {
  margin-right: 1rem;
  text-decoration: none;
  color: #ff7f50;
  font-style: italic;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

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

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.hero-buttons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  color: #ff7f50;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.hero-buttons a:hover {
  background-color: #ffe5d9;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

section {
  padding: 4rem 2rem;
  text-align: center;
}

section h3 {
  color: #ff7f50;
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
}

footer a {
  margin: 0 0.5rem;
  color: #ff7f50;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}