
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #e6ecf5 0%, #f4f6f9 100%);
  color: #333;
}

header {
  background: url('https://images.unsplash.com/photo-1601482359076-fdc2ec3e0d7f?fit=crop&w=1500&q=80') center/cover no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 42, 94, 0.65);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  text-align: center;
  color: white;
}

.header-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  margin: 0 0 10px;
}

.header-content p {
  font-size: 20px;
  font-style: italic;
  margin: 0;
}

nav {
  background: #014aad;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  display: block;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #002f6c;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  border-bottom: 3px solid #003C8F;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}

footer {
  background: #002a5e;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  margin-top: 60px;
}

.equipment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.equipment-item {
  max-width: 400px;
  text-align: center;
}

.equipment-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg_static_applied.png') no-repeat center top;
    background-size: 100% auto;
    background-attachment: fixed;
    opacity: 1;
    z-index: -1;
}
