/* Base Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff0f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navigation */
header {
  background: #ff69b4;
  padding: 1rem 0;
  color: white;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.highlights img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto; /* optional spacing & centering */
  border-radius: 10px; /* optional: soft round edges */
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

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

/* Hero Section */
.hero {
  background: #ffe4e1;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  color: #d63384;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Highlights */
.highlights {
  padding: 3rem 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem;
  width: calc(50% - 10px);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h4 {
  margin: 0.5rem 0;
}

.card a {
  color: #d63384;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #ff69b4;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  
}
  .card {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
