@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-style: normal;
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5; */
  color: #333;
  background-color: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
.header {
  background: linear-gradient(90deg, #0a1628, #1a3a5c);
  padding: 32px 0;
  position: relative;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  width: auto;
  height: 40px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.auth-button {
  background: transparent;
  color: #d0d5eb;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.auth-button:hover {
  background-color: #ffffff1a;
  border-color: #ffffff80;
}
.language-selector {
  position: relative;
}
.language-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #d0d5eb;
  padding: 8px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.language-button:hover {
  background-color: #ffffff1a;
}
.language-text {
  font-size: 14px;
  font-weight: 500;
}
.language-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.language-arrow.open {
  transform: rotate(180deg);
}
.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px #00000026;
  min-width: 140px;
  z-index: 1000;
  margin-top: 8px;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease-out;
}
@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.language-option {
  display: block;
  width: 100%;
  padding: 20px;
  background: transparent;
  color: #3a3a3a;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.language-option:hover {
  background-color: #1a3a5c;
  color: #fff;
}
.language-option.active {
  background-color: #0b1727;
  color: #fff;
}
.language-option.active:hover {
  background-color: #1a3a5c;
}
@media (max-width: 768px) {
  .header {
    padding: 16px 0;
  }
  .header-actions {
    gap: 12px;
  }
  .logo-text {
    font-size: 20px;
  }
  .auth-button {
    padding: 10px 20px;
    font-size: 13px;
  }
  .language-button {
    padding: 6px 10px;
    font-size: 13px;
  }
  .language-text {
    font-size: 12px;
  }
  .language-dropdown {
    min-width: 120px;
  }
  .language-option {
    padding: 16px;
    font-size: 14px;
  }
}
.hero {
  background: linear-gradient(90deg, #0a1628, #1a3a5c);
  padding: 80px 0 120px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  gap: 80px;
  align-items: center;
}
.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}
.highlight {
  color: #3b82f6;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #e0e2f2;
}
.cta-button {
  background: #3b82f6;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  transition: all 0.3s ease;
}
.cta-button:hover {
  box-shadow: 0 8px 25px #1062b94d;
}
.arrow-icon {
  width: 24px;
  height: 24px;
}
.features {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.feature {
  display: flex;
  flex-direction: column;
  color: #e0e2f2;
  gap: 8px;
  font-size: 12px;
  align-items: flex-start;
}
.feature-icon {
  width: 84px;
  height: 20px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cards-container {
  position: relative;
  width: 490px;
  height: 300px;
}
.card {
  position: absolute;
  width: 370px;
  height: 222px;
  border-radius: 16px;
  box-shadow: 0 12px 32px #0000004d;
  transition: transform 0.3s ease;
}
@keyframes floatAnimation {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes floatAnimationMaster {
  0%,
  to {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(13deg) translateY(-8px);
  }
}
.card-content-master {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background-image: url(../../images/product/img_bankcardbg_m.svg);
  background-size: 360px;
  background-repeat: no-repeat;
  background-position: 0 10px;
}
.mastercard-card {
  background: linear-gradient(180deg, #16af93, #5d800d);
  top: 100px;
  left: 80px;
  z-index: 2;
  transform: rotate(15deg);
  animation: floatAnimationMaster 3.5s ease-in-out infinite;
}
.card-content-visa {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background-image: url(../../images/product/img_bankcardbg_m.svg);
  background-size: 360px;
  background-repeat: no-repeat;
  background-position: 0 10px;
}
.visa-card {
  background: linear-gradient(180deg, #c95e27, #fb9526);
  top: 0;
  left: 0;
  z-index: 1;
  animation: floatAnimation 3s ease-in-out infinite;
}
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-title {
    font-size: 40px;
  }
  .cards-container {
    width: 350px;
    height: 250px;
  }
  .card {
    width: 280px;
    height: 180px;
  }
}
@media (max-width: 820px) {
  .hero-content-reverse {
    flex-direction: column-reverse;
  }
  .mastercard-card {
    top: 70px;
  }
  .visa-card {
    top: -30px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 80px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .cards-container {
    width: 300px;
    height: 200px;
  }
  .card {
    width: 240px;
    height: 150px;
    border-radius: 8px;
  }
  .card-content-master,
  .card-content-visa {
    background-size: 236px;
    background-position: 0px 10px;
  }
  .feature {
    text-align: left;
  }

  .mastercard-card {
    top: 55px;
  }
  .visa-card {
    top: -45px;
  }
}
.about-us {
  padding: 200px 0;
  background: aliceblue;
}
.about-content {
  display: grid;
  gap: 60px;
  align-items: center;
}
.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 32px;
  line-height: 1.2;
}
.about-description {
  font-size: 16px;
  width: 40%;
  line-height: 1.6;
  color: #3a3a3a;
  margin-bottom: 24px;
}
.mission-card {
  width: 100%;
  background: #0a1628;
  box-shadow: 0 20px 30px #0000004d;
  background-image: url(../../images/about/img_about.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 78%;
  border-radius: 20px;
  padding: 60px;
  margin-top: 40px;
  color: #e0e2f2;
  position: relative;
  overflow: hidden;
}
.mission-card:before {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #0a1628, #0a1628, #0a162800);
  top: 0;
  left: 0;
  width: 600px;
  height: 100%;
}
.mission-title {
  font-size: 86px;
  font-family: Playfair Display, serif;
  font-weight: 300;
  color: #e0e2f2;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.mission-list {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.mission-list li {
  color: #e0e2f2;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 0;
  position: relative;
}
.mission-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-title {
    font-size: 40px;
  }
  .mission-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .about-us {
    padding: 160px 0;
  }
  .about-title {
    font-size: 42px;
  }
  .about-description {
    width: 100%;
  }
  .mission-card {
    margin-top: 30px;
    background-size: 110%;
    background-position: top;
    padding: 100px 20px 40px 40px;
  }
  .mission-card:before {
    width: 100%;
    height: 28%;
    transform: translateY(116%);
    background: linear-gradient(0deg, #0a1628, #0a1628, #0a162800);
  }
  .mission-title {
    font-size: 54px;
    font-weight: 400;
  }
  .mission-list li {
    line-height: 1.4;
  }
}

@media (device-width: 540px) and (device-height: 720px) {
  .mission-card:before {
    height: 33%;
  }
}
@media (device-width: 360px) and (device-height: 740px) {
  .mission-card:before {
    height: 22%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mission-card:before {
    height: 63%;
    transform: translateY(59%);
  }
}

.why-us {
  padding: 200px 0;
  color: #fff;
  background: #102442 url(../../images/background/img_y_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.why-us-content {
  text-align: center;
}
.why-us-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.why-us-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  text-align: left;
  padding: 0;
}
.feature-icon-placeholder {
  width: 260px;
  height: 130px;
  background: #0000009e;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* border: 1px solid rgb(255 255 255 / 38%); */
}
.whyus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
}
.feature-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px 60px;
    max-width: 800px;
  }
  .feature-card {
    text-align: unset;
  }
  .feature-icon-placeholder{
    place-self: center;
  }
  .why-us-title {
    font-size: 40px;
  }
  .why-us-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }
}
@media (max-width: 820px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
  }
  .feature-card {
    text-align: unset;
  }
  .feature-icon-placeholder{
    place-self: center;
  }
}
@media (max-width: 768px) {
  .why-us {
    padding: 80px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
  }
  .feature-card {
    text-align: center;
  }
  .why-us-title {
    font-size: 42px;
  }
  .why-us-subtitle {
    font-size: 15px;
    margin-bottom: 50px;
  }
  .feature-icon-placeholder {
    margin-left: auto;
    margin-right: auto;
  }
}
.what-you-get {
  padding: 240px 0;
  color: #3a3a3a;
  background: aliceblue;
}
.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #3a3a3a;
  text-align: flex-start;
  margin-bottom: 100px;
  line-height: 1.2;
  width: 50%;
}
.whatuget-section {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  gap: 40px;
  margin-bottom: 160px;
  max-width: 1200px;
  height: 220px;
  margin-left: auto;
  margin-right: auto;
}
.whatuget-section:last-child {
  margin-bottom: 0;
}
.whatuget-content {
  flex: 1;
  padding-left: 40px;
  max-width: 50%;
}
.whatuget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.whatuget-list li {
  margin: 12px 0;
}
.whatuget-item {
  font-size: 16px;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #3b82f6;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-right: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.whatuget-image {
  flex: 1;
  max-width: 640px;
}
.whatuget-image img {
  width: 640px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 30px #0003;
}
@media (max-width: 1024px) {
  .whatuget-section {
    gap: 60px;
    margin-bottom: 100px;
  }
  .section-title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .whatuget-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .what-you-get {
    padding: 120px 0;
  }
  .whatuget-section {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 120px;
    text-align: center;
    background: #fff;
    height: 100%;
  }
  .whatuget-content {
    max-width: 100%;
    padding: 20px 20px 0px 20px;
    width: 100%;
  }
  .section-title {
    font-size: 41px;
    margin-bottom: 50px;
    width: 100%;
  }
  .whatuget-title {
    text-align: left;
    font-size: 24px;
    padding-left: 0;
  }
  .whatuget-description {
    text-align: left;
  }
  .whatuget-image {
    max-width: 100%;
    padding-right: 0;
  }
  .whatuget-image-reverse {
    flex-direction: column-reverse;
  }
  .whatuget-item {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .whatuget-image img {
    vertical-align: bottom;
  }
  
}

.howtoapply {
  background-color: #f0f1f7;
  padding: 240px 0;
  color: #3a3a3a;
}
.howtoapply-content {
  text-align: center;
}
.howtoapply-title {
  font-size: 48px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 16px;
  line-height: 1.2;
}
.howtoapply-subtitle {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 80px;
  line-height: 1.6;
}
.howtoapply-steps {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.howtoapply-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}
.howtoapply-step-number {
  width: 80px;
  height: 80px;
  background: #c6ddeb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: #6678bb;
  margin: 0 auto 32px;
}
.howtoapply-step-title {
  font-size: 24px;
  font-weight: 600;
  color: #3a3a3a;
  margin-bottom: 16px;
  line-height: 1.3;
}
.howtoapply-step-description {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}
.howtoapply-security-section {
  background: linear-gradient(90deg, #1b3d6f, #0a1628);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  text-align: left;
}
.howtoapply-shield-icon {
  width: auto;
  height: 88%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* .howtoapply-security-content {
  flex: 1;
} */
.howtoapply-security-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}
.howtoapply-security-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.howtoapply-security-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}
.howtoapply-security-list li:last-child {
  margin-bottom: 0;
}
.howtoapply-cta-button {
  background-color: #fff;
  color: #3b82f6;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.howtoapply-cta-button:hover {
  background-color: #f5f5f5;
  box-shadow: 0 8px 20px #00000026;
}
.howtoapply-arrow {
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.3s ease;
}
.howtoapply-cta-button:hover .howtoapply-arrow {
  transform: translate(4px);
}
@media (max-width: 1024px) {
  .howtoapply-steps {
    gap: 60px;
    margin-bottom: 80px;
  }
  .howtoapply-title {
    font-size: 40px;
  }
  .howtoapply-security-section {
    gap: 50px;
  }
  .howtoapply-security-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .howtoapply {
    padding: 200px 0;
  }
  .howtoapply-steps {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
  }
  .howtoapply-step {
    max-width: 100%;
  }
  .howtoapply-title {
    font-size: 32px;
  }
  .howtoapply-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }
  .howtoapply-security-section {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
  .howtoapply-security-title {
    font-size: 42px;
  }
  .howtoapply-security-content {
    padding: 0 30px 60px;
  }
}
.faq {
  padding: 240px 0;
  color: #3a3a3a;
  background: aliceblue;
}
.faq-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-intro {
  flex: 1;
  max-width: 400px;
}
.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 24px;
  line-height: 1.2;
}
.faq-description {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
}
.faq-list {
  flex: 1;
  max-width: 600px;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: #3b82f6;
}
.faq-question:active{
  background: rgba(128, 128, 128, 0.13);
}
.faq-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1.4;
  text-align: left;
}
.faq-question:hover .faq-question-text {
  color: #3b82f6;
}
.faq-icon {
  flex-shrink: 0;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon-open {
  transform: rotate(180deg);
  color: #3b82f6;
}
.faq-question:hover .faq-icon {
  color: #2d44f8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-answer-open {
  max-height: 200px;
}
.faq-answer-content {
  padding: 0 0 24px;
}
.faq-answer-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.faq-item-open .faq-question-text {
  color: #3b82f6;
}
@media (max-width: 1024px) {
  .faq-content {
    gap: 60px;
  }
  .faq-title {
    font-size: 40px;
  }
  .faq-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding: 80px 0 160px;
  }
  .faq-content {
    flex-direction: column;
    gap: 50px;
  }
  .faq-intro {
    max-width: 100%;
    text-align: center;
    align-self: center;
  }
  .faq-list {
    max-width: 100%;
  }
  .faq-title {
    font-size: 42px;
  }
  .faq-description {
    font-size: 15px;
  }
  .faq-question {
    padding: 20px 0;
  }
  .faq-question-text {
    font-size: 16px;
  }
}
.footer {
  padding: 60px 0 40px;
  background: #060d19 url(../../images/background/img_footerbg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 20px auto;
}
.footer-left {
  flex: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 60px;
}
.footer-logo-img {
  width: auto;
  height: 72px;
}
.footer-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e0f2e340;
  margin-bottom: 20px;
  margin-top: 10px;
}
.footer-copyright {
  font-size: 14px;
  color: #e0f2e340;
  margin: 0;
}
.footer-center {
  flex: 1;
}
.footer-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #e0e2f2;
  margin-bottom: 24px;
  line-height: 1.3;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-email {
  font-size: 16px;
  color: #e0e2f2;
  margin: 0;
}
.footer-email a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-email a:hover {
  color: #2563eb;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e0e2f2;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
}
.footer-social-link:hover {
  color: #2563eb;
  transform: translate(4px);
}
.footer-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.footer-social-link:hover .footer-arrow {
  transform: translate(4px);
}
.footer-right {
  flex: 1;
}
.footer-legal-text {
  font-size: 12px;
  line-height: 1.6;
  color: #e0f2e340;
  margin: 0;
}
@media (max-width: 1024px) {
  .footer-content {
    gap: 60px;
  }
  .footer-left {
    max-width: 280px;
  }
  .footer-center {
    max-width: 220px;
  }
  .footer-right {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 24px;
  }
  .footer-content {
    flex-direction: column;
    gap: 60px;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    max-width: 100%;
  }
  .footer-description {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .footer-section-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .footer-email,
  .footer-social-link {
    font-size: 16px;
  }
  .footer-legal-text {
    font-size: 11px;
  }
}
.App {
  min-height: 100vh;
}

@media (min-width: 540px) {
  .container {
      max-width: 500px;

  }

  .features-grid {
      max-width: 500px;
  }

  .whatuget-section {
      max-width: 500px;
  }

  .howtoapply-steps {
      max-width: 500px;
  }

  .howtoapply-security-section {
      max-width: 500px;
  }

  .faq-content {
      max-width: 500px;
  }

  .footer-content {
      max-width: 500px;
  }

}

@media (min-width: 768px) {
  .container {
      max-width: 700px;

  }

  .features-grid {
      max-width: 700px;
  }

  .whatuget-section {
      max-width: 700px;
  }

  .howtoapply-steps {
      max-width: 700px;
  }

  .howtoapply-security-section {
      max-width: 700px;
  }

  .faq-content {
      max-width: 700px;
  }

  .footer-content {
      max-width: 700px;
  }

}

@media (min-width: 820px) {
  .container {
      max-width: 780px;

  }

  .features-grid {
      max-width: 780px;
  }

  .whatuget-section {
      max-width: 780px;
  }

  .howtoapply-steps {
      max-width: 780px;
  }

  .howtoapply-security-section {
      max-width: 780px;
  }

  .faq-content {
      max-width: 780px;
  }

  .footer-content {
      max-width: 780px;
  }

}

@media (min-width: 1024px) {
  .container {
      max-width: 900px;

  }

  .features-grid {
      max-width: 900px;
  }

  .whatuget-section {
      max-width: 900px;
  }

  .howtoapply-steps {
      max-width: 900px;
  }

  .howtoapply-security-section {
      max-width: 900px;
  }

  .faq-content {
      max-width: 900px;
  }

  .footer-content {
      max-width: 900px;
  }

}

@media (min-width: 1180px) {
  .container {
      max-width: 1200px;

  }

  .features-grid {
      max-width: 1200px;
  }

  .whatuget-section {
      max-width: 1200px;
  }

  .howtoapply-steps {
      max-width: 1200px;
  }

  .howtoapply-security-section {
      max-width: 1200px;
  }

  .faq-content {
      max-width: 1200px;
  }

  .footer-content {
      max-width: 1200px;
  }

}