:root {
  --primary: #004aad;
  --secondary: #ffcc00;
  --text-dark: #222;
  --text-light: #fff;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  background-color: #f8f9fb;
}

header {
  background: var(--primary);
  color: var(--text-light);
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  font-weight: 300;
}

section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.photos img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--primary);
  color: var(--text-light);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}