body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #222;
}

header {
  background-color: #990000;
  color: white;
  padding: 1em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header .branding {
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: center;
  margin-bottom: 1em;
}

header img {
  height: 60px;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

header nav {
  display: flex;
  gap: 1.5em;
  font-weight: bold;
  font-size: 0.95em;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffaaaa;
}

.hero {
  background: url('hero.jpg') center/cover no-repeat;
  padding: 5em 1em;
  text-align: center;
  color: white;
  background-color: #444;
}

.cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #ff4444;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 3em 1em;
  max-width: 900px;
  margin: 0 auto;
}

.photo-placeholder {
  height: 200px;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
  background-color: transparent;
  border-radius: 8px;
  object-fit: cover;
}

.gallery {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}

input, textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #990000;
  color: white;
  padding: 0.75em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #cc0000;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
}

.logos-gallery {
  justify-content: center;
  margin-top: 2em;
}

.logo {
  max-width: 120px;
  height: auto;
}


