* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 2;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
}

.logo-container h1 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #002a5c;
  line-height: 1.2;
}

.logo-container span {
  font-weight: normal;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #002a5c;
}

.hero img {
  width: 100%;
  height: auto;
}

.tagline {
  background-color: #a6192e;
  color: #fff;
  padding: 2rem 1rem;
}

.tagline h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}

.tagline h2 span {
  font-weight: normal;
}

.tagline p {
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background-color: #f4f6f8;
  box-shadow: -2px 0 5px rgba(0,0,0,0.3);
  padding: 2rem 1.5rem;
  transition: right 0.3s ease;
  z-index: 5;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar .close-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.sidebar ul {
  list-style-type: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.sidebar ul li ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.sidebar ul li ul li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #555;
}

.main-content {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-image-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-image-text img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.content-image-text .text h2 {
  color: #002a5c;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.content-image-text .text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.content-image-text .text a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #a6192e;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive: Side-by-side on wider screens */
@media (min-width: 768px) {
  .content-image-text {
    flex-direction: row;
    align-items: flex-start;
  }

  .content-image-text img {
    width: 40%;
  }

  .content-image-text .text {
    width: 60%;
  }
}

.footer {
  background-color: #002a5c;
  color: #fff;
  padding: 3rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 220px;
}

.footer h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #a6192e;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.footer-col p, 
.footer-col li {
  margin-bottom: 0.7rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons a {
  display: inline-block;
  margin-right: 0.5rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* Main Content Sections */
.content-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.content-section.alt {
  background-color: #eef1f6;
}

.content-article {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.content-image {
  flex: 1 1 300px;
  max-width: 450px;
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-text {
  flex: 1 1 300px;
}

.content-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #002a5c;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Action Links */
.action-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  text-decoration: underline;
  color: #a6192e;
  font-size: 1.25rem; /* Increased font size */
  transition: color 0.3s ease;
}

.action-link:hover {
  color: #002a5c;
}

.news-section {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

.news-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #002a5c;
  margin-bottom: 2rem;
}

.news-article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.5rem;
}

.news-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.news-text h3 {
  font-size: 1.4rem;
  color: #a6192e;
  margin-bottom: 0.5rem;
}

.news-text p {
  font-size: 1rem;
  color: #333;
}


.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  background: rgba(0, 0, 0, 0.4); /* Optional: dark overlay */
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
  max-width: 90%;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  padding: 0.8rem 1.5rem;
  background-color: #a6192e;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero-btn:hover {
  background-color: #002a5c;
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
}

/* Testimonials Styling */
.testimonial {
  background-color: #eef1f6;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #a6192e;
  font-style: italic;
  color: #333;
}

.testimonial strong {
  display: block;
  margin-top: 0.5rem;
  color: #002a5c;
}