/* Base Styles */
:root {
  --primary-color: #001f3f;
  --accent-color: #0074D9;
  --background-color: #f9f9f9;
  --text-color: #333;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

/* Navigation */
nav {
  background: var(--accent-color);
  text-align: center;
  padding: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

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

/* Sections */
section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

ul {
  list-style: disc inside;
  padding-left: 20px;
}

p {
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* Responsive Gallery (Optional for images) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
