/* Global Styles */
body {
  font-family: 'Playfair Display', serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

.container-fluid {
  padding: 0;
}

/* Top Banner Styles */
.top-banner {
  position: relative;
  height: 80px;
  max-height: 400px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-banner img.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
}

.top-banner .logo {
  position: absolute;
  left: 15px;
  bottom: 10px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.715);
  border-radius: 5px;
  max-width: 200px;
  width: auto;
}

.top-banner .title {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.top-banner .title a {
  color: #000;
  text-decoration: none;
}

.top-banner .title a:hover {
  color: #0a66bd;
}

/* Navbar Styles */
.navbar {
  background-color: #0a66bd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
  color: #000;
}

.nav-tabs {
  border-bottom: none;
}

/* Content Styles */
.content {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin: 2rem 0;
}

h5,
.section-header {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a66bd;
  margin: 20px 0;
}

.section-content,
ul.text-left {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

ul.text-left {
  columns: 2;
  column-gap: 40px;
  margin-top: 20px;
}

.highlight,
.highlight-info {
  height: 8px;
  margin: 10px 0;
}

.highlight {
  background-color: #eaa61fe1;
}

.highlight-info {
  background-color: #0a66bd;
}

.card {
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-body {
  padding: 20px;
}

.card-img-top {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.card-header.bg-primary {
  background-color: #0a66bd !important;
}

/* Form Styles */
.contact-form,
.guidelines-section,
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.form-label,
.guidelines-section h4 {
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.guidelines-section h4 {
  background-color: #0a66bd;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.guidelines-section table {
  width: 100%;
  margin-top: 20px;
}

.guidelines-section th,
.guidelines-section td {
  padding: 15px;
  border: 1px solid #dee2e6;
}

.guidelines-section th {
  background-color: #0a66bd;
  color: #fff;
}

.guidelines-section td {
  background-color: #f8f9fa;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #0a66bd;
  box-shadow: 0 0 5px rgba(10, 102, 189, 0.3);
}

.btn-primary {
  background-color: #0a66bd;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #004080;
  transform: translateY(-2px);
}

/* Footer Styles */
.footer {
  background-color: #eaa61fe1;
  height: 100px;
  text-align: center;
  line-height: 100px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  border-top: 3px solid #000000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer a {
  color: #000;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    padding: 20px;
    margin: 10px;
  }

  .top-banner .title {
    font-size: 1.2rem;
  }

  footer {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .top-banner .logo {
    max-width: 150px;
  }

  .top-banner .title {
    font-size: 1rem;
  }

  .highlight,
  .highlight-info {
    height: 5px;
  }

  .contact-form,
  .guidelines-section,
  .content {
    padding: 15px;
  }

  ul.text-left {
    columns: 1;
  }
}

/* Enhancements */
.highlight {
  background-color: linear-gradient(45deg, #eaa61fe1, #f8f9fa);
}

.highlight-info {
  background-color: linear-gradient(45deg, #0a66bd, #f8f9fa);
}

.section-header {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header.bg-primary {
  background-image: linear-gradient(to right, #0a66bd, #004080);
}

.form-control {
  background-color: #f8f9fa;
}