/* General Reset & Body */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #f4f7fb;
  color: #333;
}

/* Header / Hero Section */
header {
  background: linear-gradient(135deg, #002c5e, #004aad);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 3rem;
}
header p {
  margin-top: 1rem;
  font-size: 1.3rem;
}

/* Call-to-Action Button */
.cta-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 50px;
  margin-top: 2rem;
  transition: transform 0.2s ease, background 0.3s ease;
}
.cta-btn:hover {
  background: #e68900;
  transform: scale(1.05);
}

/* Intro Section */
.section {
  padding: 3rem 2rem;
  text-align: center;
  background: white;
}
.section h2 {
  color: #004aad;
  margin-bottom: 1rem;
}
.section p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Image + Text Section */
.image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: #eef3f9;
  flex-wrap: wrap; /* responsive */
}
.image-wrapper {
  flex: 1;
  text-align: center;
}
.image-wrapper img {
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.text-wrapper {
  flex: 1;
  padding: 1rem 2rem;
}
.text-wrapper h2 {
  color: #004aad;
  margin-bottom: 1rem;
}
.text-wrapper p {
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}
.modal-content {
  background: white;
  margin: 8% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 420px;
  text-align: left;
  animation: pop 0.3s ease;
}
@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-content h2 {
  margin-top: 0;
  color: #004aad;
}
.modal-content input {
  width: 100%;
  padding: 0.9rem;
  margin: 0.6rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.submit-btn {
  background: #004aad;
  color: white;
  border: none;
  padding: 1rem;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 1rem;
}
.submit-btn:hover {
  background: #00337a;
}
.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

/* Logo + Title alignment */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center; /* centers horizontally */
  gap: 15px; /* space between logo and text */
}

.logo-title .logo {
  height: 50px; /* adjust size as needed */
  width: auto;
}
.logo-title h1 {
  margin: 0;
  font-size: 3rem;
  color: white;
}