.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #6394bf;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1248px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__logo:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
.nav__logo img {
  width: auto;
  margin-right: 1rem;
  display: block;
}

.nav__menu {
  display: flex !important;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__link {
  color: #dbeafe;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}
.nav__link:hover {
  color: #FFFF00;
}

.nav__mobile-btn {
  display: none;
  background: none;
  border: none;
  color: #dbeafe;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav__mobile-btn:hover {
  color: #FFFF00;
  transform: scale(1.1);
}

.nav__mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .nav__menu {
    display: none !important;
  }
  .nav__mobile-btn {
    display: block;
  }
  .nav__mobile-menu {
    background: #6394bf;
    padding-bottom: 1.5rem;
  }
  .nav__mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0 1.5rem;
    list-style: none;
  }
  .nav__mobile-menu .nav__link {
    padding: 1rem 0;
    font-size: 1.125rem;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__mobile-menu .nav__link:hover {
    padding-left: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #374151;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1e3a8a);
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 4rem 1.5rem;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 60rem;
}
.hero__title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #93c5fd;
}
.hero__description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: #bfdbfe;
}
.hero__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background-color: #6394bf;
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn:hover {
  background-color: rgb(69.5272727273, 122.7590909091, 169.4727272727);
  transform: scale(1.05);
}
.btn--primary {
  background-color: #6394bf;
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--primary:hover {
  background-color: rgb(69.5272727273, 122.7590909091, 169.4727272727);
  transform: scale(1.05);
}
.btn--secondary {
  background-color: #FF0000;
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--secondary:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}
.btn--accent {
  background-color: #FFFF00;
  color: #1a1a1a;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--accent:hover {
  background-color: #cccc00;
  transform: scale(1.05);
}
.btn--white {
  background-color: #ffffff;
  color: #6394bf;
  padding: 1.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--white:hover {
  background-color: #f5f5f5;
  transform: scale(1.05);
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}
.card__description {
  color: rgb(96.25, 113.75, 141.75);
  text-align: center;
}

.section {
  padding: 4rem 1.5rem;
}
.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.875rem;
  }
}
.section__subtitle {
  font-size: 1.25rem;
  color: rgb(96.25, 113.75, 141.75);
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.faq__item {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq__item.active .faq__question i {
  transform: rotate(180deg);
}
.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  transition: background 0.3s ease;
}
.faq__question:hover {
  background: #f5f5f5;
}
.faq__question i {
  color: #6394bf;
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: rgb(96.25, 113.75, 141.75);
  transition: all 0.3s ease;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__section h4 {
  margin-bottom: 1.5rem;
}
.footer__section ul {
  list-style: none;
}
.footer__section ul li {
  margin-bottom: 1rem;
}
.footer__section ul li a {
  color: gray;
  transition: color 0.3s ease;
}
.footer__section ul li a:hover {
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgb(51.5, 51.5, 51.5);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgb(184.125, 192.875, 206.875);
  border-radius: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #6394bf;
  box-shadow: 0 0 0 3px rgba(99, 148, 191, 0.1);
}
.form__textarea {
  resize: vertical;
  min-height: 8rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #6394bf;
  border-radius: 0.375rem;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(69.5272727273, 122.7590909091, 169.4727272727);
}

/*# sourceMappingURL=styles.css.map */
