/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

/* Video banner styles */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo section styles */
.logo-section {
  background-color: #f9f9f9;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.slogan {
  font-size: 1.25rem;
  color: #005f99;
  font-weight: 600;
  margin-top: 15px;
}

/* Navigation bar styles */
.navbar {
  background-color: #005f99;
  padding: 10px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Main content styles */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
}

h2 {
  color: #005f99;
  margin-bottom: 20px;
  text-align: center;
}

/* About section styles */
.about-section p {
  margin-bottom: 20px;
}

.founders {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.founder {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder p {
  text-align: left;
  margin-bottom: 20px;
  width: 100%;
}

.founder img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.founder h3 {
  margin-bottom: 10px;
  color: #005f99;
  text-align: center;
}

/* Contact section styles */
.contact-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.contact-section h2 {
  margin-bottom: 20px;
  color: #005f99;
}

.contact-section a {
  color: #005f99;
  font-weight: bold;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #f1f1f1;
  color: #666;
}

/* Global link styling */
main a {
  color: #005f99;
  font-weight: bold;
  text-decoration: none;
}

main a:hover {
  text-decoration: underline;
}

/* Teaser Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  margin: 5% auto;
  padding: 0;
  max-width: 1000px;
  width: 95%;
  background-color: transparent;
  position: relative;
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}
