/* Reset some default styling */
a {
  text-decoration: none;
}
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #2f4f4f;
}

/* Navigation */
nav {
  background: #9966aa;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 40px;
}
nav .container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .logo h2 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}
nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Main Content */
.content {
  margin: 50px auto;
  padding: 0 20px;
}
.content section {
  margin-bottom: 60px;
}

/* Cards Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 20px;
}
.card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
}
.pic1 {
  background-image: url('1.JPG');
}
.pic2 {
  background-image: url('2.JPG');
}
.pic3 {
  background-image: url('3.JPG');
}
.pic4 {
  background-image: url('4.JPG');
}
.pic5 {
  background-image: url('5.JPG');
}
.pic6 {
  background-image: url('6.JPG');
}
