body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo-area h1 {
  font-size: 22px;
  font-weight: bold;
  color: #0B3D91;
}

.logo-area span {
  color: #d9534f;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  color: #0B3D91;
}

/* Hero Banner */
.hero {
  text-align: center;
  background: #f5f8fa;
  padding: 20px;
}

.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Sections */
section {
  padding: 40px 20px;
}

h2 {
  color: #0B3D91;
  margin-bottom: 15px;
}

/* Services + Video */
#services-video {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.services {
  flex: 1;
  min-width: 250px;
}

.video-container {
  flex: 1;
  min-width: 300px;
}

.video-container video {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* Contact Button */
#contact button {
  background: #0B3D91;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#contact button:hover {
  background: #d9534f;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: #333;
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

form input, form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background: #0B3D91;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #d9534f;
}

/* Footer */
footer {
  text-align: center;
  background: #0B3D91;
  color: white;
  padding: 15px;
}
