@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Be Vietnam Pro", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
  text-transform: uppercase;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
  text-transform: uppercase;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

body{
  width: 100%;
  overflow-x: hidden;
}

/* Header Start*/
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  flex-direction: row;
}

.logo {
  max-height: 50px;
  height: auto;
  width: auto;
}

#navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

#navbar li {
  list-style: none;
  padding: 0 0px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #f4c27e;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #f4c27e;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.language-dropdown {
  position: relative;
}

.language-dropdown .flag-icon {
  width: 20px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  object-fit: contain;
}

.language-dropdown .current-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background-color: white;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 140px; /* hoặc min-width: 140px */
  justify-content: space-between;
  white-space: nowrap;
}

.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 999;
  list-style: none;
  padding: 0;
  min-width: 160px;
}

.language-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  background-color: white;
  transition: background-color 0.3s ease;
}

.language-menu li a:hover {
  background:  transparent;
  color: #f4c27e;
}

.language-dropdown:hover .language-menu {
  display: block;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #999999;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.3s ease;
  margin-left: auto;
}

.menu-toggle i {
  font-size: 20px;
}

.menu-toggle:hover {
  color: #f4c27e;
}

.menu-toggle span {
  pointer-events: none;
}

@media (max-width: 768px) {
  #header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5vw;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1001;
  }

  .menu-toggle {
    display: flex;
  }

  #navbar {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 280px;
    background: white;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  #navbar-wrapper {
    display: none !important;
  }


  #navbar li {
    text-align: center;
    width: 100%;
  }

  #navbar li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  #navbar li a.active::after,
  #navbar li a:hover::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .logo {
    max-height: 60px;
  }
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1200;
  transition: left 0.3s ease;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-header {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
  max-width: 120px;
  height: auto;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-menu a {
  display: block;
  padding: 14px 20px;
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.sidebar-menu a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #f4c27e;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  display: none;
}

.overlay.active {
  display: block;
}


#mobileSidebar .language-dropdown .current-lang {
  display: block;
  padding: 14px 20px;
  width: 100%;
  color: black;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  background-color: white;
  transition: background-color 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

#mobileSidebar .language-dropdown .current-lang:hover {
  background-color: #f4f4f4;
}

#mobileSidebar .language-dropdown .flag-icon {
  width: 20px;
  height: 14px;
  object-fit: contain;
}

#mobileSidebar .language-menu {
  display: none;
  background: white;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin-top: 5px;
}

#mobileSidebar .language-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 500;
  color: #1a1a1a;
  background-color: white;
  width: 100%;
}

#mobileSidebar .language-menu li a:hover {
  background: #f4f4f4;
  color: #f4c27e;
}

/* Banner overlay trên ảnh */
.banner {
  position: relative;
  height: 700px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 30px; /* đẩy chữ xuống dưới, cách đáy 30px */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* lớp phủ mờ */
  color: white;
  text-align: center;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto; /* bỏ height 100% */
}

.banner-overlay h2 {
  font-size: 2rem; /* kích thước font thay đổi theo chiều rộng màn hình */
  margin-bottom: 1rem;
}

.banner-overlay .btn {
  margin-top: 1rem;
  background-color: #f4c27e;
  color: black;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.banner-overlay .btn:hover {
  background-color: #e3ac5e;
}

#dich-vu {
  padding: 2rem 1rem;
  min-height: 500px;
}

.typewriter {
  color: white;
  font-size: 2rem;
  white-space: normal;
  overflow: hidden;
  width: 0;
  animation: typing 5s steps(50, end) forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.container {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 16px;
}

.features {
  background-color: #fffefb;
  padding: 4rem 1rem;
  text-align: center;
}

.features-title {
  font-size: 2rem;
  font-weight: bold;
  color: #090551;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* CÁC SẢN PHẨM*/
.services-section {
  background: linear-gradient(135deg, #f7d060, #f2b930);
  color: #090551; /* chữ nâu đậm để nổi trên nền vàng */
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 12px;
  max-width: 1200px;    /* Giới hạn chiều rộng tối đa */
  margin: 0 auto;       /* Canh giữa */
  width: 90%;           /* Chiếm 90% chiều ngang của bố cục cha */
}

.services-section h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #090551;
}

.services-grid {
  display: flex; /* dùng flexbox thay cho grid */
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* luôn 1 hàng, không xuống dòng */
  overflow-x: hidden; /* không dùng cuộn ngang */
}

.service-card {
  flex: 1 1 0; /* chia đều */
  min-width: 0; /* cho phép co nhỏ */
  position: relative;
  text-decoration: none;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff6d1; /* nền vàng nhạt */
  color: #3e2f00;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(160, 130, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem; /* thêm padding nếu cần */
  box-sizing: border-box;
}


@media (max-width: 900px) {
  .services-grid {
    flex-wrap: wrap;       /* Cho phép xuống dòng */
    justify-content: center; /* Căn giữa các phần tử */
    overflow-x: visible;   /* Bỏ cuộn ngang */
  }

  .service-card {
    flex: 1 1 90%;         /* Chiếm 90% chiều rộng */
    max-width: 90%;        /* Giới hạn chiều rộng tối đa */
    margin-bottom: 1.5rem; /* Khoảng cách giữa các sản phẩm */
  }
}


/* Tối ưu chữ, hình ảnh bên trong nếu cần */
.service-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1rem;
  text-align: center;
  color: #4b3b00;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(160, 130, 0, 0.5);
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  z-index: 1;
  position: relative;
  transition: opacity 0.3s ease;
}

.service-card img.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;      
  height: 300px;     
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Responsive cho ảnh chính và ảnh hover */
@media (max-width: 900px) {
  .service-card img,
  .service-card img.hover-image {
    height: 300px;    /* giảm chiều cao ảnh khi màn nhỏ */
  }
  .service-card h3 {
    margin-top: 12px;
    padding: 0 10px;
    position: relative;
    z-index: 10;
  }
}

.service-card:hover img.hover-image {
  opacity: 1;
}

.service-card:hover img.main-image {
  opacity: 0;
}

.news-section {
  max-width: 1200px;
  margin: 50px auto 60px auto;
  text-align: center;
}

.intro-section {
  position: relative;
  max-width: 90%;      /* Giới hạn chiều rộng */
  margin: 40px auto;     /* Căn giữa và margin trên/dưới */
  padding: 30px 20px;
  border: 2px solid #e9d87a;
  border-radius: 30px;
  background-color: white; /* Nền vàng nhạt nhẹ */
  box-shadow: 0 8px 20px rgba(233, 216, 122, 0.3);
  font-family: "Spartan", sans-serif;
}

/* Tiêu đề GIỚI THIỆU nằm giữa */
.intro-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #090551;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content-block {
  margin-bottom: 60px; /* Khoảng cách giữa các block */
  position: relative;  /* để dễ canh chỉnh */
}

.arrow-box {
  position: relative;
  display: flex;
  left: -22px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px solid #e9d87a;
  padding: 20px 30px;
  border-radius: 0 30px 30px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  gap: 5px;
  font-weight: 700;
  font-size: 18px;
  color: white;
  width: fit-content;
  margin-bottom: 20px;
}

/* Màu nền và viền riêng */
.arrow-yellow {
  background-color: #fcba03;
  border-color: #e9d87a;
  color: #4b3b00;
}

.sub-text {
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
}

.subsection-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4b3b00; /* màu nâu đậm */
  margin-top: 40px;
  margin-bottom: 12px;
  text-transform: uppercase;
  border-left: 6px solid #f4c27e; /* viền vàng bên trái */
  padding-left: 12px;
}


.description {
  margin-top: 50px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  text-align: justify;
}
.image-below {
  display: flex;
  justify-content: center;  /* căn giữa hàng ngang */
  gap: 5px;                /* khoảng cách giữa các ảnh */
  margin-top: 20px;
}

.image-below img {
   width: 45%;        /* giảm còn 50% */
  height: auto;
  display: block;
  margin: 20px auto 0 auto; /* căn giữa và cách trên 20px */
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .image-below {
    flex-direction: column;  /* Ảnh xếp dọc thay vì ngang */
    gap: 10px;               /* Khoảng cách ảnh */
  }

  .image-below img {
    width: 100%;              /* Ảnh chiếm gần hết chiều ngang */
    margin: 10px auto;       /* Căn giữa */
    height: auto;
  }
}

.highlight {
  background-color: #f4c27e;
  color: #4b3b00;
  padding: 0 6px;
  border-radius: 4px;
}

.sales-activity-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.sales-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sales-card:hover {
  transform: translateY(-5px);
}

.sales-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sales-caption {
  padding: 1rem;
  border-top: 3px solid #f4c27e;
}

.sales-caption h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.sales-caption p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

.partners-section {
  padding: 4rem 1rem;
  background: white;
  text-align: center;
}

.partners-title {
  font-size: 2rem;
  font-weight: bold;
  color: #090551;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.partners-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.partners-grid img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}



/* ================== PHẦN 03 KIM CHỈ NAM ================== */

.guiding-principles {
  background-color: #fffefb;
  padding: 4rem 1rem;
  text-align: center;
}

.guiding-title {
  font-size: 2rem;
  font-weight: 700;
  color: #090551;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.guiding-subtitle {
  font-size: 1rem;
  color: #777;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.guiding-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.guiding-card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.guiding-card:hover {
  transform: translateY(-5px);
}

.number-circle {
  width: 48px;
  height: 48px;
  background-color: #f4c27e;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.guiding-card h3 {
  font-size: 1.1rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.guiding-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .guiding-grid {
    flex-direction: column;
    align-items: center;
  }

  .guiding-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .number-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}


/*Báo*/
.news-market-section {
  background: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.news-title {
  font-size: 2rem;
  color: #090551;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.news-subtitle {
  font-size: 1rem;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 2.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: #fffdf7;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: left;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-card h3 {
  font-size: 1.1rem;
  color: #1f2937;
  font-weight: 600;
  margin: 1rem;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0 1rem 1rem;
  line-height: 1.5;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  color: #999999;
  margin: 0 1rem 1rem;
}

.news-grid a.news-card {
  text-decoration: none;
  display: block;
  border-radius: 12px;
  background: #fffdf7;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  overflow: hidden;
  text-align: left;
  color: inherit; /* kế thừa màu chữ */
}

.news-grid a.news-card:hover {
  transform: translateY(-5px);
}

.news-grid a.news-card h3,
.news-grid a.news-card p,
.news-grid a.news-card .news-date {
  color: inherit;
  text-decoration: none; 
}


/* Footer styles */
.custom-footer {
  background: white;
  /*background: linear-gradient(to right, #1f2937, #111827);*/
  color: #2295c7;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: #1e293b;
  padding: 1.5rem;
  width: 100%;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  width: 100%;
  background-color: #374151;
  color: white;
  border: 1px solid transparent;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form button {
  background-color: #f4c27e;
  color: #1f2937;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e3ac5e;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center; /* căn giữa logo và text */
  text-align: center; /* căn giữa đoạn text */
}

.footer-left h3,
.footer-right h3 {
  color: #f4c27e;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.footer-right img {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-right p,
.footer-left p {
  margin: 0.3rem 0;
  line-height: 1.6;
}

.footer-right ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 1rem 0;
}

.footer-right ul li {
  margin-bottom: 0.5rem;
}

.footer-right strong {
  display: inline-block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.footer-right a {
  margin-right: 10px;
  color: #f4c27e;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #ffffff;
}

.footer-right .email-link {
  color: #4b3b00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right .email-link:hover {
  color: #f4c27e;
  text-decoration: underline;
}

footer {
  background-color: #0f172a;
  color: #2295c7;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}
