section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  color: #4169e1;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  font-size: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #4169e1 0%, #0d0a81 100%);
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.hero-section p {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  opacity: 0.9;
}

.floating-coins {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-coins .floating-coin {
  position: absolute;
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.floating-coins .coin-1 {
  top: 20%;
  left: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.floating-coins .coin-2 {
  top: 60%;
  left: 50%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.floating-coins .coin-3 {
  top: 30%;
  right: 10%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
            transform: translateY(-20px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(360deg);
            transform: translateY(0px) rotate(360deg);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(180deg);
            transform: translateY(-20px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(360deg);
            transform: translateY(0px) rotate(360deg);
  }
}

.card {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card .card-body {
  padding: 2rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-number {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 30px;
  height: 30px;
  background: #4169e1;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

.form-control, .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
}

.form-control:focus, .form-select:focus {
  border-color: #4169e1;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(65, 105, 225, 0.25);
}

.btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #4169e1 0%, #0d0a81 100%);
  border: none;
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1659cd 0%, #0d0a81 100%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #4169e1;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  .card {
    margin-bottom: 1.5rem;
  }
}

.document-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.document-list li i {
  position: absolute;
  left: 0;
  top: 0.25rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #4169e1;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.social-links a i {
  color: #ffffff;
  font-size: 1.25rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  height: 40px;
}

.navbar .nav-link {
  color: #333333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #4169e1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #4169e1;
}

.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  width: 80%;
}

.contact-info p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.contact-info p i {
  margin-top: 0.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-info a {
  color: #4169e1;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1d44b8;
}

footer {
  background-color: #0d0a81;
  color: #ffffff;
  padding: 3rem 0;
}

footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

footer .social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .social-links a i {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

footer .social-links a:hover {
  background: #ffffff;
  color: #4169e1;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

footer .social-links a:hover i {
  opacity: 1;
}

footer .contact-info p {
  color: rgba(255, 255, 255, 0.8);
}

footer .contact-info p i {
  color: #ffffff;
  margin-right: 10px;
}

footer .contact-info a {
  color: rgba(255, 255, 255, 0.8);
}

footer .contact-info a:hover {
  color: #ffffff;
}

.section--tight {
  padding: 2rem 0 !important;
}

.section--loose {
  padding: 6rem 0 !important;
}
/*# sourceMappingURL=styles.css.map */