@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: pretty;
}

#root,
#__next {
  isolation: isolate;
}

body {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

.social-linkedin:hover {
  background-color: #0a66c2 !important;
  border-color: #0a66c2 !important;
}

.social-x-twitter:hover {
  background-color: #14171a !important;
  border-color: #14171a !important;
}

.social-facebook:hover {
  background-color: #1877f2 !important;
  border-color: #1877f2 !important;
}

.social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border: 0 !important;
}

.g-recaptcha > div {
  position: relative;
}

.g-recaptcha > div:after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 12px;
  background: #f9f9f9;
  position: absolute;
  right: 8px;
  bottom: 6px;
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.section-container {
  max-width: 1300px;
  padding: 0 20px;
  width: 100%;
}

.header {
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 400px) {
  .header {
    height: 60px;
  }
}
.header.active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: rgba(246, 246, 246, 0.8);
}
.header .header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header .header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 380px) {
  .header .header-actions > .btn-primary {
    font-size: 0.75rem;
    padding: 0 0.75rem;
    height: 34px;
  }
}
.header .navbar-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
}
.header .navbar-logo img {
  height: 100%;
  width: auto;
  max-height: 40px;
}
@media (max-width: 380px) {
  .header .navbar-logo img {
    max-height: 30px;
  }
}
.header .nav {
  display: flex;
  align-items: center;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav-item {
  position: relative;
}
.header .nav-item.dropdown .nav-link::after {
  content: "";
  display: inline-block;
  width: 1.15rem;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  background-color: #404040;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-mask-image: url("/public/images/svg/chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/public/images/svg/chevron-down.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  margin-left: 0.25rem;
}
.header .nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #404040;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header .nav-item .nav-link::after {
  transition: background-color 0.15s ease;
}
.header .nav-item .nav-link:hover, .header .nav-item .nav-link:focus {
  color: #0a0a0a;
  outline: none;
}
.header .nav-item .nav-link:hover::after, .header .nav-item .nav-link:focus::after {
  background-color: #0a0a0a;
}
.header .dropdown-menu {
  position: absolute;
  left: 0;
  top: 80%;
  min-width: 200px;
  margin-top: 0.5rem;
  padding: 0.25rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 1001;
  overflow: hidden;
}
.header .dropdown-menu > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .dropdown:hover > .dropdown-menu,
.header .dropdown:focus-within > .dropdown-menu {
  display: block;
}
.header .dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #404040;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.15s ease;
  position: relative;
}
.header .dropdown-item:hover, .header .dropdown-item:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #0a0a0a;
  outline: none;
}
.header .dropdown-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.header .dropdown-item:hover::after, .header .dropdown-item:focus::after {
  transform: scaleX(1);
}
@media (max-width: 1015px) {
  .header .nav {
    display: none;
  }
  .header .nav-toggle {
    display: inline-flex;
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 44px;
  margin-left: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #0a0a0a;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.05s ease, border-color 0.2s ease;
}
@media (max-width: 400px) {
  .nav-toggle {
    height: 34px;
    width: 40px;
  }
}
.nav-toggle:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.nav-toggle:active {
  transform: scale(0.98);
}
.nav-toggle .nav-toggle-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.nav-toggle .hamburger-icon,
.nav-toggle .close-icon {
  position: absolute;
  font-size: 1.125rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-toggle .hamburger-icon {
  opacity: 1;
  transform: rotate(0deg);
}
.nav-toggle .close-icon {
  opacity: 0;
  transform: rotate(90deg);
}
.nav-toggle.active .hamburger-icon {
  opacity: 0;
  transform: rotate(-90deg);
}
.nav-toggle.active .close-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 70px);
  overflow: hidden;
  padding: 1rem;
}

.mobile-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.9rem 1.25rem;
  color: #404040;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}
.mobile-nav-link:last-child {
  border-bottom: none;
}
.mobile-nav-link:hover, .mobile-nav-link:focus {
  color: #0a0a0a;
  outline: none;
  background: rgba(0, 0, 0, 0.03);
}

.mobile-dropdown .mobile-nav-link::after {
  content: "";
  display: inline-block;
  width: 1rem;
  aspect-ratio: 1/1;
  background-color: #525252;
  -webkit-mask-image: url("/public/images/svg/chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/public/images/svg/chevron-down.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-dropdown[aria-expanded=true] > .mobile-nav-link::after,
.mobile-dropdown.open > .mobile-nav-link::after {
  transform: rotate(180deg);
  background-color: #0a0a0a;
}

.mobile-submenu {
  list-style: none;
  padding: 0.25rem 0 0.5rem 0.75rem;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-submenu[hidden] {
  max-height: 0;
  padding: 0 0 0 0.75rem;
}

.mobile-submenu-item {
  display: block;
  padding: 0.5rem 1.25rem;
  color: #525252;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}
.mobile-submenu-item:last-child {
  border-bottom: none;
}
.mobile-submenu-item:hover, .mobile-submenu-item:focus {
  color: #0a0a0a;
  outline: none;
  background: rgba(0, 0, 0, 0.03);
}

.mobile-cta {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-section {
  min-height: calc(100vh - 70px);
}
@media (max-width: 400px) {
  .hero-section {
    min-height: calc(100vh - 60px);
  }
}
.hero-section .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 20px;
}
.hero-section .hero-container .hero-text {
  flex: 1;
  padding-right: 3rem;
}
.hero-section .hero-container .hero-text .hero-highlighted-wrapper {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #1447e6;
}
.hero-section .hero-container .hero-text .hero-highlighted-wrapper .hero-highlighted-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1447e6;
  margin-bottom: 0.25rem;
}
.hero-section .hero-container .hero-text .hero-highlighted-wrapper .hero-highlighted-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #404040;
  line-height: 1.3;
}
.hero-section .hero-container .hero-text .hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-section .hero-container .hero-text .hero-title span {
  font-style: normal;
  color: #737373;
}
.hero-section .hero-container .hero-text .hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 2rem;
}
.hero-section .hero-container .hero-text .hero-description span {
  font-weight: 600;
  color: #262626;
}
.hero-section .hero-container .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.hero-section .hero-container .hero-text .hero-buttons .cta-btn,
.hero-section .hero-container .hero-text .hero-buttons .cta-highlighted-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.525rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-section .hero-container .hero-text .hero-buttons .cta-btn {
  background-color: #1447e6;
  color: #ffffff;
  font-weight: 500;
}
.hero-section .hero-container .hero-text .hero-buttons .cta-btn:hover {
  background-color: #1c398e;
  color: #ffffff;
}
.hero-section .hero-container .hero-text .hero-buttons .cta-highlighted-btn {
  background-color: transparent;
  color: #525252;
  border: 1px solid #d4d4d4;
}
.hero-section .hero-container .hero-text .hero-buttons .cta-highlighted-btn:hover {
  background-color: #e5e5e5;
  color: #404040;
}
.hero-section .hero-container .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  max-height: 500px;
  border-radius: 0.875rem;
}
.hero-section .hero-container .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 940px) {
  .hero-section .hero-container {
    flex-direction: column-reverse;
    padding: 2rem 20px;
  }
  .hero-section .hero-container .hero-text {
    padding-right: 0;
    text-align: center;
    max-width: 750px;
    flex: none;
    padding-bottom: 3rem;
  }
  .hero-section .hero-container .hero-text .hero-buttons {
    justify-content: center;
    width: 100%;
  }
  .hero-section .hero-container .hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    padding-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .hero-section .hero-container .hero-text {
    text-align: left;
    padding-bottom: 2rem;
  }
  .hero-section .hero-container .hero-text .hero-highlighted-wrapper {
    padding-left: 0.75rem;
    border-left-width: 3px;
  }
  .hero-section .hero-container .hero-text .hero-highlighted-wrapper .hero-highlighted-title {
    font-size: 0.75rem;
  }
  .hero-section .hero-container .hero-text .hero-highlighted-wrapper .hero-highlighted-subtitle {
    font-size: 1.125rem;
  }
  .hero-section .hero-container .hero-text .hero-title {
    font-size: 1.5rem;
  }
  .hero-section .hero-container .hero-text .hero-description {
    font-size: 0.9375rem;
  }
  .hero-section .hero-container .hero-text .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-section .hero-container .hero-text .hero-buttons .cta-btn,
  .hero-section .hero-container .hero-text .hero-buttons .cta-highlighted-btn {
    width: 100%;
    text-align: center;
  }
  .hero-section .hero-container .hero-image {
    aspect-ratio: 3/2;
    padding-bottom: 30px;
  }
}

.why-choose-section {
  padding: 4rem 0;
  background-color: #f7f7f7;
}
.why-choose-section .why-choose-container {
  text-align: center;
  padding: 0 20px;
}
.why-choose-section .why-choose-container .why-choose-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0a0a0a;
}
.why-choose-section .why-choose-container .why-choose-title span {
  background-color: #1c398e;
  color: #ffffff;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(20, 71, 230, 0.2);
}
@media (max-width: 768px) {
  .why-choose-section .why-choose-container .why-choose-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .why-choose-section .why-choose-container .why-choose-title {
    font-size: 2rem;
  }
}
.why-choose-section .why-choose-container .why-choose-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #525252;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .why-choose-section .why-choose-container .why-choose-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
}
.why-choose-section .why-choose-container .why-choose-cards-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .why-choose-section .why-choose-container .why-choose-cards-con {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .why-choose-section .why-choose-container .why-choose-cards-con {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 0;
  }
}

.features-section {
  padding: 60px 0;
  background-color: #f7f7f7;
}
.features-section .feature-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.features-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.features-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .features-section .section-header h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .features-section .section-header h2 {
    font-size: 1.75rem;
  }
}
.features-section .section-header p {
  font-size: 1.125rem;
  color: #525252;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .features-section .section-header p {
    font-size: 1rem;
    max-width: 500px;
  }
}
.features-section .feature-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 160px;
}
@media (max-width: 1120px) {
  .features-section .feature-list-container {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .features-section .feature-list-container {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .features-section .feature-list-container {
    flex-direction: column;
    gap: 8px;
  }
}

.contact-section {
  padding: 4rem 0;
  background-color: #fafafa;
  border-top: 1px solid #e5e5e5;
}
.contact-section .contact-container {
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-section .section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.contact-section .section-header .section-description {
  font-size: 1.0625rem;
  color: #525252;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-section .contact-content {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .contact-section .contact-content {
    flex-direction: column-reverse;
  }
}
.contact-section .contact-content > div {
  flex: 1;
}
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-section .contact-info .direct-contact {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.625rem;
  padding: 2rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.contact-section .contact-info .direct-contact .info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
}
.contact-section .contact-info .direct-contact .company-address {
  margin-bottom: 1.5rem;
}
.contact-section .contact-info .direct-contact .company-address .company-name {
  font-weight: 600;
  color: #0a0a0a;
}
.contact-section .contact-info .direct-contact .company-address p {
  margin: 0 0 0.25rem 0;
  color: #404040;
  font-size: 0.9375rem;
}
.contact-section .contact-info .direct-contact .google-map-link {
  margin-bottom: 1.5rem;
}
.contact-section .contact-info .direct-contact .google-map-link a {
  color: #1447e6;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.contact-section .contact-info .direct-contact .google-map-link a:hover {
  color: #1c398e;
}
.contact-section .contact-info .direct-contact .contact-method {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-section .contact-info .direct-contact .contact-method .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-section .contact-info .direct-contact .contact-method .contact-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #e5e5e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.contact-section .contact-info .direct-contact .contact-method .contact-item .icon i[data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  color: #404040;
}
.contact-section .contact-info .direct-contact .contact-method .contact-item .label {
  font-size: 0.875rem;
  color: #737373;
  margin: 0;
}
.contact-section .contact-info .direct-contact .contact-method .contact-item .value {
  font-size: 1rem;
  color: #0a0a0a;
  margin: 0;
  font-weight: 500;
}
.contact-section .contact-info .agent-support {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.625rem;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.contact-section .contact-info .agent-support .support-title {
  font-size: 1.0625rem;
  color: #0a0a0a;
  margin: 0;
}
.contact-section .contact-info .agent-support .support-text {
  color: #525252;
  margin: 0;
  font-size: 0.9375rem;
}
.contact-section .contact-info .agent-support .social-icons {
  display: flex;
  gap: 0.75rem;
}
.contact-section .contact-info .agent-support .social-icons .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: #e5e5e5;
  color: #404040;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.08s ease;
}
.contact-section .contact-info .agent-support .social-icons .social i[data-lucide] {
  width: 1.05rem;
  height: 1.05rem;
}
.contact-section .contact-info .agent-support .social-icons .social:hover {
  background-color: #1447e6;
  color: #ffffff;
  transform: translateY(-1px);
}
.contact-section .contact-form {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.contact-section .contact-form form {
  display: block;
}
.contact-section .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contact-section .contact-form .form-group label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0a0a0a;
}
.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group select,
.contact-section .contact-form .form-group textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: #0a0a0a;
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.contact-section .contact-form .form-group input::-moz-placeholder, .contact-section .contact-form .form-group select::-moz-placeholder, .contact-section .contact-form .form-group textarea::-moz-placeholder {
  color: #a1a1a1;
}
.contact-section .contact-form .form-group input::placeholder,
.contact-section .contact-form .form-group select::placeholder,
.contact-section .contact-form .form-group textarea::placeholder {
  color: #a1a1a1;
}
.contact-section .contact-form .form-group input:hover,
.contact-section .contact-form .form-group select:hover,
.contact-section .contact-form .form-group textarea:hover {
  border-color: #d4d4d4;
}
.contact-section .contact-form .form-group input:focus,
.contact-section .contact-form .form-group select:focus,
.contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #1447e6;
  box-shadow: 0 0 0 3px rgba(20, 71, 230, 0.25);
}
.contact-section .contact-form .form-group input:disabled,
.contact-section .contact-form .form-group select:disabled,
.contact-section .contact-form .form-group textarea:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  background-color: #f7f7f7;
}
.contact-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .contact-section .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-form .btn-submit {
  margin-top: 1.5rem;
  gap: 0.375rem;
  border: none;
  cursor: pointer;
}
.contact-section .contact-form .btn-submit i[data-lucide] {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}
@media (max-width: 640px) {
  .contact-section .contact-form .btn-submit {
    width: 100%;
  }
}
.contact-section .contact-form .select-group .select-wrapper {
  position: relative;
}
.contact-section .contact-form .select-group .select-wrapper select {
  padding-right: 2.25rem;
}
.contact-section .contact-form .select-group .select-wrapper svg {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #525252;
  width: 1rem;
  height: 1rem;
}
.contact-section .contact-form label .optional {
  color: #737373;
  margin-left: 0.15rem;
  font-weight: 400;
}
.contact-section .contact-form .form-message {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.contact-section .contact-form .form-message.success {
  background-color: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}
.contact-section .contact-form .form-message.error {
  background-color: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.contact-section .contact-form .btn-submit .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-section .contact-form .btn-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-section .section-header {
    margin-bottom: 2.5rem;
  }
  .contact-section .section-header .section-title {
    font-size: 2.125rem;
  }
  .contact-section .section-header .section-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}

a {
  text-decoration: none;
}

.blog-hero-section {
  padding: 4rem 0 2.5rem;
  background-color: #fafafa;
}
.blog-hero-section .blog-hero-container {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}
.blog-hero-section .blog-hero-container .blog-hero-title {
  font-size: clamp(1.75rem, 1rem + 2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0a0a0a;
  margin-bottom: 1rem;
}
.blog-hero-section .blog-hero-container .blog-hero-description {
  font-size: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem);
  color: #525252;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-article {
  background-color: #fafafa;
  cursor: pointer;
}
.featured-article .featured-container {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s ease;
}
@media (max-width: 1000px) {
  .featured-article .featured-container {
    grid-template-columns: 1fr;
  }
}
.featured-article .featured-container:hover {
  border-color: #d4d4d4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.featured-article .featured-image {
  overflow: hidden;
  background: #e5e5e5;
  position: relative;
}
.featured-article .featured-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featured-article .featured-content {
  background: transparent;
  border: none;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid #e5e5e5;
}
@media (max-width: 1000px) {
  .featured-article .featured-content {
    border-left: none;
    border-top: 1px solid #e5e5e5;
  }
}
.featured-article .featured-content .featured-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #525252;
}
.featured-article .featured-content .featured-meta .featured-category {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background-color: #e5e5e5;
  color: #404040;
  font-size: 0.75rem;
  font-weight: 600;
}
.featured-article .featured-content .featured-meta .featured-date {
  font-size: 0.75rem;
  color: #737373;
}
.featured-article .featured-content .featured-title {
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.75rem);
  line-height: 1.2;
  margin: 0;
  color: #0a0a0a;
}
.featured-article .featured-content .featured-description {
  font-size: clamp(0.875rem, 0.85rem + 0.25vw, 1rem);
  color: #404040;
  line-height: 1.6;
  margin: 0;
}
.featured-article .featured-content .featured-author {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #404040;
}
.featured-article .featured-content .featured-author i[data-lucide] {
  width: 1rem;
  height: 1rem;
  color: #525252;
}
.featured-article .featured-content .featured-author .author-name {
  font-size: 0.8125rem;
  font-weight: 500;
}

.latest-articles {
  padding: 3rem 0 4rem;
  background-color: #fafafa;
}
.latest-articles .latest-container {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}
.latest-articles .latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) {
  .latest-articles .latest-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.latest-articles .latest-header .latest-title {
  font-size: clamp(1.375rem, 1rem + 0.8vw, 1.625rem);
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
}
.latest-articles .latest-header .latest-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.latest-articles .latest-header .latest-categories .category,
.latest-articles .latest-header .latest-categories .category-active {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #e5e5e5;
  color: #525252;
  background: #fff;
  transition: all 0.15s ease;
}
.latest-articles .latest-header .latest-categories .category:hover,
.latest-articles .latest-header .latest-categories .category-active:hover {
  border-color: #d4d4d4;
  transform: translateY(-1px);
}
.latest-articles .latest-header .latest-categories .category-active {
  background: #1447e6;
  color: #ffffff;
  border-color: #1447e6;
}
.latest-articles .latest-articles-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .latest-articles .latest-articles-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .latest-articles .latest-articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .latest-articles .latest-articles-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.blog-pagination-section {
  background-color: #fafafa;
  padding: 2.5rem 0 4rem;
}
.blog-pagination-section .blog-pagination-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.blog-pagination-section .pagination-btn {
  min-width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0 0.75rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.525rem;
  text-decoration: none;
  transition: background-color 0.195s ease, box-shadow 0.2s ease, transform 0.05s ease;
  cursor: pointer;
  background-color: #fff;
  color: #262626;
}
.blog-pagination-section .pagination-btn:hover:not(.pagination-btn-primary):not(.pagination-btn-disabled) {
  background-color: #f7f7f7;
  border-color: #a1a1a1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.blog-pagination-section .pagination-btn:active:not(.pagination-btn-primary):not(.pagination-btn-disabled) {
  transform: translateY(0);
}
.blog-pagination-section .pagination-btn.pagination-btn-primary {
  background-color: #1447e6;
  color: #ffffff;
  border-color: #1447e6;
  cursor: default;
  box-shadow: 0 2px 8px rgba(20, 71, 230, 0.25);
}
.blog-pagination-section .pagination-btn.pagination-btn-primary:hover {
  background-color: #1c398e;
  border-color: #1c398e;
  color: #ffffff;
}
.blog-pagination-section .pagination-btn.pagination-btn-disabled {
  background-color: #e5e5e5;
  color: #737373;
  border-color: #d4d4d4;
  cursor: not-allowed;
  opacity: 0.6;
}
.blog-pagination-section .pagination-btn.pagination-btn-disabled:hover {
  background-color: #e5e5e5;
  color: #737373;
  border-color: #d4d4d4;
  transform: none;
  box-shadow: none;
}
.blog-pagination-section .pagination-prev,
.blog-pagination-section .pagination-next {
  padding: 0 1rem;
  font-weight: 700;
}
.blog-pagination-section .pagination-ellipsis {
  min-width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #737373;
  background: transparent;
  border: none;
  cursor: default;
}

.about-us {
  padding: 5rem 0;
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .about-us {
    padding: 4rem 0;
  }
}
@media (max-width: 480px) {
  .about-us {
    padding: 3rem 0;
  }
}
.about-us .about-us-header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .about-us .about-us-header {
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .about-us .about-us-header {
    margin-bottom: 2.5rem;
  }
}
.about-us .about-us-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-us .about-us-header h1 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .about-us .about-us-header h1 {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
  }
}
.about-us .about-us-header p {
  font-size: 1.125rem;
  color: #525252;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-us .about-us-header p {
    font-size: 1rem;
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .about-us .about-us-header p {
    font-size: 0.875rem;
    max-width: 100%;
  }
}
.about-us .team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .about-us .team-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about-us .team-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-us .team-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.footer-section {
  background: #1c398e;
  color: #ffffff;
  margin-top: auto;
  position: relative;
}
.footer-section .footer-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-section .footer-container {
    padding: 0 1rem;
  }
}
.footer-section .footer-content {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 3rem;
  padding: 4rem 0 3rem 0;
}
@media (max-width: 1024px) {
  .footer-section .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .footer-section .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem 0;
  }
}
.footer-section .footer-company {
  position: relative;
  padding-right: 2rem;
}
.footer-section .footer-company::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .footer-section .footer-company::after {
    display: none;
  }
}
.footer-section .footer-company .footer-logo {
  margin-bottom: 1.5rem;
}
.footer-section .footer-company .footer-logo img {
  height: 48px;
  width: auto;
  filter: grayscale(1) invert(1);
  transition: filter 0.3s ease;
}
.footer-section .footer-company .footer-logo img:hover {
  filter: none;
}
@media (max-width: 768px) {
  .footer-section .footer-company .footer-logo img {
    height: 40px;
  }
}
.footer-section .footer-company .footer-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 340px;
}
@media (max-width: 768px) {
  .footer-section .footer-company .footer-description {
    font-size: 0.875rem;
    max-width: none;
  }
}
.footer-section .footer-company .footer-contact-info {
  margin-bottom: 1.5rem;
}
.footer-section .footer-company .footer-contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-section .footer-company .footer-contact-info .contact-item i {
  color: #1447e6;
  font-size: 0.9375rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-section .footer-company .footer-contact-info .contact-item .contact-details {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #a1a1a1;
}
@media (max-width: 768px) {
  .footer-section .footer-company .footer-contact-info .contact-item .contact-details {
    font-size: 0.8125rem;
  }
}
.footer-section .footer-company .footer-contact-info .contact-item .contact-link {
  color: #a1a1a1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section .footer-company .footer-contact-info .contact-item .contact-link:hover {
  color: #1447e6;
}
.footer-section .footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .footer-section .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 400px) {
  .footer-section .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer-section .footer-column .footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}
.footer-section .footer-column .footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
}
@media (max-width: 768px) {
  .footer-section .footer-column .footer-heading {
    font-size: 1.0625rem;
  }
}
.footer-section .footer-column .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-column .footer-nav li {
  margin-bottom: 0.5rem;
}
.footer-section .footer-column .footer-nav .footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-section .footer-column .footer-nav .footer-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}
.footer-section .footer-column .footer-nav .footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer-section .footer-column .footer-nav .footer-link:hover::before {
  width: 100%;
}
@media (max-width: 768px) {
  .footer-section .footer-column .footer-nav .footer-link {
    font-size: 0.875rem;
  }
}
.footer-section .footer-column .footer-contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-section .footer-column .footer-contact-info .contact-item i {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-section .footer-column .footer-contact-info .contact-item .contact-details {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .footer-section .footer-column .footer-contact-info .contact-item .contact-details {
    font-size: 0.8125rem;
  }
}
.footer-section .footer-column .footer-contact-info .contact-item .contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section .footer-column .footer-contact-info .contact-item .contact-link:hover {
  color: #ffffff;
}
.footer-section .footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-section .footer-social .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.footer-section .footer-social .footer-social-link:hover {
  background: #ffffff;
  color: #1447e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
}
.footer-section .footer-social .footer-social-link.social-linkedin:hover {
  background: #0077b5;
  color: #ffffff;
  border-color: #0077b5;
}
.footer-section .footer-social .footer-social-link:active {
  transform: translateY(0);
}
.footer-section .footer-social .footer-social-link i {
  font-size: 1rem;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .footer-section .footer-social .footer-social-link {
    width: 40px;
    height: 40px;
  }
  .footer-section .footer-social .footer-social-link i {
    font-size: 0.9375rem;
  }
}
.footer-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.footer-section .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
.footer-section .footer-bottom .footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .footer-copy {
    font-size: 0.8125rem;
    order: 2;
  }
}
.footer-section .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .footer-bottom-links {
    gap: 1rem;
    order: 1;
  }
}
.footer-section .footer-bottom .footer-bottom-links .footer-bottom-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-section .footer-bottom .footer-bottom-links .footer-bottom-link:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom .footer-bottom-links .footer-bottom-link {
    font-size: 0.8125rem;
  }
}

.blog-post-section * {
  font-family: "Poppins", sans-serif !important;
}

.article-page-section {
  background-color: #fff;
}

.article-page-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 20px 4rem;
}
.article-page-layout > *:first-child {
  flex: 1 1 0;
  min-width: 0;
}
.article-page-layout > *:last-child {
  flex: 0 0 380px;
}
@media (max-width: 1100px) {
  .article-page-layout {
    gap: 2rem;
  }
  .article-page-layout > *:last-child {
    flex: 0 0 320px;
  }
}
@media (max-width: 900px) {
  .article-page-layout {
    gap: 1.5rem;
  }
  .article-page-layout > *:first-child, .article-page-layout > *:last-child {
    flex: 1 1 100%;
  }
}

.article-wrapper-container {
  max-width: 840px;
  padding: 0;
  width: 100%;
}

.article-section {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article-header {
  text-align: left;
  margin: 1.5rem 0 0;
}

.article-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 0.5rem;
}

.article-subtitle {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 1rem;
}
.article-subtitle span {
  color: #1c398e;
}

.article-paragraph {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.article-paragraph span {
  font-weight: 600;
}

.article-image-wrapper {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.article-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}

.article-extended {
  margin-top: 2rem;
}

.article-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2233;
  margin: 2rem 0 1rem 0;
}

.article-subheading {
  font-size: 1.15rem;
  color: #2d3748;
  margin: 1.5rem 0 0.5rem 0;
}
.article-subheading span {
  color: #1c398e;
}

.article-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding-left: 1rem;
}
.article-list > * {
  flex: 0 0 calc(50% - 1rem);
  min-width: 0;
}
@media (max-width: 700px) {
  .article-list {
    flex-direction: column;
    gap: 0.75rem;
  }
  .article-list > * {
    flex: 1 1 100%;
  }
}

.article-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #222;
}

.article-list-icon {
  font-size: 1.2rem;
  color: #3182ce;
  margin-right: 0.5rem;
}

.article-list-text {
  margin: 0;
  color: #333;
}

.article-list-image {
  max-width: 40px;
  max-height: 40px;
  border-radius: 4px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
}

.feature-text {
  color: #222;
  font-weight: 400;
}

.article-info {
  display: block;
  font-weight: 600;
  color: #1a2233;
  margin: 1rem 0;
}
.article-info span {
  color: #1c398e;
}

.article-carousel {
  background: #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: #4a5568;
  font-style: italic;
}

.blog-post-section {
  background-color: #fff;
  padding: 3rem 0 4rem;
}

.blog-post-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
}
.blog-post-layout > *:first-child {
  flex: 1 1 0;
  min-width: 0;
}
.blog-post-layout > *:last-child {
  flex: 0 0 380px;
}
@media (max-width: 1100px) {
  .blog-post-layout {
    gap: 2rem;
  }
  .blog-post-layout > *:last-child {
    flex: 0 0 320px;
  }
}
@media (max-width: 900px) {
  .blog-post-layout {
    flex-direction: column;
    gap: 1.5rem;
  }
  .blog-post-layout > *:first-child, .blog-post-layout > *:last-child {
    flex: 1 1 100%;
  }
}

.blog-post-title {
  font-size: clamp(2.25rem, 1.5rem + 2vw, 2.5rem);
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-post-main {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.blog-post-content {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  color: #262626;
  margin-bottom: 2rem;
}
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
  color: #0a0a0a;
  font-weight: 600;
  line-height: 1.3;
  margin: 1.5rem 0 1rem !important;
}
.blog-post-content h1:first-child,
.blog-post-content h2:first-child,
.blog-post-content h3:first-child,
.blog-post-content h4:first-child,
.blog-post-content h5:first-child,
.blog-post-content h6:first-child {
  margin-top: 0;
}
.blog-post-content h1 {
  font-size: 2rem !important;
  margin-top: 2.5rem !important;
}
.blog-post-content h2 {
  font-size: 1.75rem !important;
  margin-top: 2.5rem !important;
}
.blog-post-content h3 {
  font-size: 1.5rem !important;
}
.blog-post-content h3 > span {
  color: #262626 !important;
}
.blog-post-content h4 {
  font-size: 1.25rem !important;
}
.blog-post-content p {
  margin-bottom: 1.5rem !important;
  text-wrap: pretty;
}
.blog-post-content p span {
  color: #404040 !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}
.blog-post-content p span[style*="vertical-align:super"] {
  font-size: 0.75rem !important;
  color: #1c398e !important;
}
.blog-post-content a {
  color: #1447e6;
}
.blog-post-content a > span {
  font-weight: 500 !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  color: #1447e6 !important;
}
.blog-post-content br {
  display: none !important;
}
.blog-post-content ul,
.blog-post-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.blog-post-content li {
  margin-bottom: 0.5rem;
}
.blog-post-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.blog-post-content blockquote {
  border-left: 4px solid #1447e6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #404040;
}
.blog-post-content code {
  background: #f7f7f7;
  padding: 0.2rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
  color: #262626;
}
.blog-post-content pre {
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}
.blog-post-content pre code {
  background: none;
  padding: 0;
}
.blog-post-content table {
  width: 100% !important;
  border-collapse: collapse !important;
}
@media (max-width: 768px) {
  .blog-post-content table {
    width: calc(100vw - 40px) !important;
    overflow-x: auto !important;
    display: block !important;
  }
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.blog-post-description {
  margin: 0 0 1.5rem;
  color: #404040;
}
.blog-post-description .meta-description {
  font-size: clamp(1rem, 1rem + 0.2vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.blog-post-author,
.blog-post-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-post-featured-image {
  margin: 0 0 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #f7f7f7;
}
.blog-post-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #737373;
}

.meta-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #262626;
}

.blog-post-sidebar {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  height: 100%;
}
@media (max-width: 900px) {
  .blog-post-sidebar {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.blog-post-sidebar .latest-articles {
  margin: 0 0 1rem;
  padding: 1rem 1rem;
  background: #f7f7f7;
  border-radius: 12px;
}

.blog-post-sidebar .latest-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}

.blog-post-sidebar .latest-header {
  margin: 0 0 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 3px solid #1447e6;
}

.blog-post-sidebar .latest-title {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: #171717;
  margin: 0;
}

.blog-post-sidebar .latest-articles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-post-sidebar .latest-article-item {
  padding: 0 0 0.75rem;
  border-bottom: 1px solid rgba(229, 229, 229, 0.4);
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}
.blog-post-sidebar .latest-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-post-sidebar .latest-article-thumbnail {
  flex-shrink: 0;
  width: 100px;
  height: 75px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e5e5;
}
.blog-post-sidebar .latest-article-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blog-post-sidebar .latest-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.blog-post-sidebar .latest-article-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c398e;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post-sidebar .latest-article-link:hover, .blog-post-sidebar .latest-article-link:focus {
  color: #1447e6;
  text-decoration: underline;
}

.blog-post-sidebar .latest-article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #525252;
}

.blog-post-sidebar .latest-article-date {
  font-weight: 600;
}

.blog-post-sidebar .latest-article-author {
  font-weight: 500;
}

.blog-post-sidebar .latest-empty {
  margin: 0;
  padding: 0.5rem 0;
  color: #525252;
  font-size: 0.875rem;
}

.book-demo-card {
  width: 100%;
  background: linear-gradient(135deg, #1447e6 0%, #1c398e 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(20, 71, 230, 0.2);
}
@media (min-width: 901px) {
  .book-demo-card {
    position: sticky;
    top: 90px;
  }
}

.demo-card-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.demo-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.demo-card-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.demo-card-button {
  display: inline-block;
  background: #ffffff;
  color: #1447e6;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.demo-card-button:hover {
  background: #f7f7f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.demo-card-button:active {
  transform: translateY(0);
}

.blog-post-faqs {
  margin: 2.5rem 0 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e5e5;
}
.blog-post-faqs * {
  font-family: "Poppins", sans-serif !important;
}

.blog-post-faqs-title {
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2rem);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-post-faqs-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-post-faq-item {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}
.blog-post-faq-item:hover {
  border-color: #1447e6;
  box-shadow: 0 4px 12px rgba(20, 71, 230, 0.1);
}
.blog-post-faq-item[open] {
  background: rgba(20, 71, 230, 0.02);
  border-color: #1447e6;
}
.blog-post-faq-item[open] .blog-post-faq-question {
  color: #1447e6;
  margin-bottom: 0.75rem;
}
.blog-post-faq-item[open] .faq-icon-plus {
  display: none;
}
.blog-post-faq-item[open] .faq-icon-minus {
  display: block;
}

.blog-post-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: clamp(1rem, 1rem + 0.2vw, 1.125rem);
  font-weight: 600;
  color: #171717;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}
.blog-post-faq-question::-webkit-details-marker {
  display: none;
}
.blog-post-faq-question:hover {
  color: #1447e6;
}

.faq-question-text {
  flex: 1;
}

.faq-toggle-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(20, 71, 230, 0.1);
  border-radius: 50%;
  color: #1447e6;
  transition: all 0.3s ease;
}
.blog-post-faq-item:hover .faq-toggle-icon {
  background: rgba(20, 71, 230, 0.2);
  transform: scale(1.1);
}

.faq-icon-plus {
  display: block;
}

.faq-icon-minus {
  display: none;
}

.blog-post-faq-answer {
  font-size: clamp(0.875rem, 0.9rem + 0.2vw, 1rem);
  line-height: 1.7;
  color: #404040;
  padding-right: 2rem;
}
.blog-post-faq-answer p,
.blog-post-faq-answer span {
  margin: 0;
  font-size: clamp(0.875rem, 0.9rem + 0.2vw, 1rem) !important;
  line-height: 1.7 !important;
}
.blog-post-faq-answer p:not(:last-child),
.blog-post-faq-answer span:not(:last-child) {
  margin-bottom: 0.75rem;
}
.blog-post-faq-answer strong {
  color: #262626;
  font-weight: 600;
}
.blog-post-faq-answer a {
  color: #1447e6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.blog-post-faq-answer a:hover {
  color: #1c398e;
  text-decoration: underline;
}
.blog-post-faq-answer ul,
.blog-post-faq-answer ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}
.blog-post-faq-answer li {
  margin-bottom: 0.375rem;
}
@media (max-width: 768px) {
  .blog-post-faq-answer {
    padding-right: 0;
  }
}

:root {
  interpolate-size: allow-keywords;
}

/* Chromium / Firefox */
details summary {
  /* Either remove the list style ... */
  list-style: none;
  /* ... or change the `display` property to something else */
  display: flex;
}

/* Webkit */
details summary::-webkit-details-marker {
  display: none;
}

details::details-content {
  overflow: hidden;
  height: 0;
  /* Enable transitioning of `content-visibility` */
  transition: height 0.3s, content-visibility 0.3s;
  transition-behavior: allow-discrete;
}

details[open]::details-content {
  height: auto;
}

.article-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
@media (max-width: 500px) {
  .article-table-wrapper {
    width: 83vw;
  }
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
}
.article-table th,
.article-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.article-table th {
  background-color: #f7fafc;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
}
.article-table tr:last-child td {
  border-bottom: none;
}
.article-table tr:hover {
  background-color: #f8fafc;
}

.article-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.article-testimonials > * {
  flex: 1 1 300px;
  min-width: 0;
}

.testimonial-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #4a5568;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: #cbd5e0;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  opacity: 0.5;
}

.testimonial-author {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 1rem;
}

.author-role {
  font-size: 0.9rem;
  color: #718096;
  margin-top: 0.25rem;
}

.article-thumbnail-mobile {
  display: none;
  margin: 1.5rem 0;
}
@media (max-width: 900px) {
  .article-thumbnail-mobile {
    display: block;
    margin: 0 0 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
  }
}

.article-thumbnail-desktop {
  display: block;
}
@media (max-width: 900px) {
  .article-thumbnail-desktop {
    display: none;
  }
}

.article-sidebar {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.5rem 0 0;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .article-sidebar {
    order: 5;
    height: auto;
  }
}
.article-sidebar .article-thumbnail-section {
  margin: 0 0 1rem;
}
.article-sidebar .article-thumbnail-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.article-sidebar .article-thumbnail-image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.article-sidebar .article-thumbnail-image:hover {
  transform: scale(1.03);
}
.article-sidebar .latest-articles {
  margin: 0 0 1rem;
  padding: 1rem 1rem;
  background: #f7f7f7;
  border-radius: 12px;
}
.article-sidebar .latest-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
}
.article-sidebar .latest-header {
  margin: 0 0 0.75rem;
  padding-bottom: 0.625rem;
  border-bottom: 3px solid #1447e6;
}
.article-sidebar .latest-title {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: #171717;
  margin: 0;
}
.article-sidebar .latest-articles-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.article-sidebar .latest-article-item {
  padding: 0 0 0.75rem;
  border-bottom: 1px solid rgba(229, 229, 229, 0.4);
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}
.article-sidebar .latest-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.article-sidebar .latest-article-thumbnail {
  flex-shrink: 0;
  width: 100px;
  height: 75px;
  border-radius: 8px;
  overflow: hidden;
  background: #e5e5e5;
}
.article-sidebar .latest-article-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.article-sidebar .latest-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}
.article-sidebar .latest-article-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c398e;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.article-sidebar .latest-article-link:hover, .article-sidebar .latest-article-link:focus {
  color: #1447e6;
  text-decoration: underline;
}
.article-sidebar .latest-article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #525252;
}
.article-sidebar .latest-article-description {
  font-weight: 500;
  color: #737373;
}
.article-sidebar .latest-article-date {
  font-weight: 600;
}
.article-sidebar .latest-article-author {
  font-weight: 500;
}
.article-sidebar .latest-empty {
  margin: 0;
  padding: 0.5rem 0;
  color: #525252;
  font-size: 0.875rem;
}
.article-sidebar .book-demo-card {
  width: 100%;
  background: linear-gradient(135deg, #1447e6 0%, #1c398e 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(20, 71, 230, 0.2);
}
@media (min-width: 901px) {
  .article-sidebar .book-demo-card {
    position: sticky;
    top: 90px;
  }
}
.article-sidebar .demo-card-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}
.article-sidebar .demo-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.article-sidebar .demo-card-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}
.article-sidebar .demo-card-button {
  display: inline-block;
  background: #ffffff;
  color: #1447e6;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.article-sidebar .demo-card-button:hover {
  background: #f7f7f7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.article-sidebar .demo-card-button:active {
  transform: translateY(0);
}

.team-member-page {
  background: #fafafa;
  padding: 2rem 1rem 5rem;
}
@media (max-width: 900px) {
  .team-member-page {
    padding: 2rem 1rem 4.5rem;
  }
}
@media (max-width: 600px) {
  .team-member-page {
    padding: 2rem 0.75rem 4rem;
  }
}
@media (max-width: 480px) {
  .team-member-page {
    padding: 1.5rem 0rem 3.5rem;
  }
}

.team-member-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1100px) {
  .team-member-container {
    gap: 2.5rem;
  }
}
@media (max-width: 900px) {
  .team-member-container {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .team-member-container {
    gap: 1.5rem;
    padding: 0 0.75rem;
  }
}

.team-member-sidebar {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  flex: 0 0 280px;
}
@media (max-width: 1100px) {
  .team-member-sidebar {
    flex: 0 0 240px;
  }
}
@media (max-width: 900px) {
  .team-member-sidebar {
    position: static;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 1rem;
    flex: 1 1 auto;
  }
}
@media (max-width: 600px) {
  .team-member-sidebar {
    padding: 1rem 1rem 1.25rem;
    gap: 0.75rem;
    border-radius: 0.75rem;
    width: 100%;
  }
}

.sidebar-title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.5px;
}
@media (max-width: 900px) {
  .sidebar-title {
    flex: 1 1 100%;
    margin-bottom: 0.25rem;
    font-size: 1.1875rem;
  }
}
@media (max-width: 600px) {
  .sidebar-title {
    font-size: 1.125rem;
    margin-bottom: 0.125rem;
  }
}

.team-member-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .team-member-nav {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
}
@media (max-width: 600px) {
  .team-member-nav {
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .team-member-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.team-member-nav-link {
  display: block;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  line-height: 1.1;
  border-radius: 0.65rem;
  color: #525252;
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: all 0.18s ease;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .team-member-nav-link {
    font-size: 0.8125rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
  }
}
@media (max-width: 480px) {
  .team-member-nav-link {
    width: 100%;
    padding: 0.65rem 1rem;
  }
}
.team-member-nav-link:hover {
  color: #262626;
  border-color: #d4d4d4;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .team-member-nav-link:hover {
    transform: none;
  }
}

.team-member-nav-item.is-active .team-member-nav-link {
  background: #1447e6;
  color: #ffffff;
  border-color: #1447e6;
  box-shadow: 0 4px 12px rgba(20, 71, 230, 0.25);
}

.team-member-content {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1.25rem;
  padding: 0 0 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 auto;
  overflow: hidden;
}
@media (max-width: 900px) {
  .team-member-content {
    padding: 0 0 3rem;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .team-member-content {
    padding: 0 0 2.5rem;
    border-radius: 1rem;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .team-member-content {
    padding: 0 0 2rem;
    border-radius: 0.75rem;
    gap: 1.5rem;
  }
}

.team-member-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 3rem;
  background-color: #e8ecf8;
}
@media (max-width: 900px) {
  .team-member-hero {
    padding: 2rem;
  }
}
@media (max-width: 780px) {
  .team-member-hero {
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .team-member-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .team-member-hero {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.team-member-photo-wrapper {
  position: relative;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #f7f7f7;
  border: 6px solid rgba(20, 71, 230, 0.15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  flex: 0 0 auto;
  transition: all 0.4s ease;
}
@media (max-width: 900px) {
  .team-member-photo-wrapper {
    width: 140px;
    height: 140px;
    border-width: 5px;
  }
}
@media (max-width: 600px) {
  .team-member-photo-wrapper {
    width: 120px;
    height: 120px;
    border-width: 4px;
  }
}
@media (max-width: 480px) {
  .team-member-photo-wrapper {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }
}
.team-member-photo-wrapper:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 71, 230, 0.25);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 600px) {
  .team-member-photo-wrapper:hover {
    transform: none;
  }
}

.team-member-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: transform 0.5s ease;
}
.team-member-photo-wrapper:hover .team-member-photo {
  transform: scale(1.04);
}

.team-member-headings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 260px;
}
@media (max-width: 600px) {
  .team-member-headings {
    min-width: unset;
    width: 100%;
    gap: 0.75rem;
  }
}

.team-member-name {
  margin: 0;
  font-size: clamp(1.5rem, 1.05rem + 0.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0a0a0a;
  line-height: 1.15;
}
@media (max-width: 600px) {
  .team-member-name {
    font-size: 1.375rem;
  }
}

.team-member-role {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c398e;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
@media (max-width: 600px) {
  .team-member-role {
    font-size: 0.9375rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .team-member-role {
    font-size: 0.875rem;
    letter-spacing: 0.8px;
  }
}

.team-member-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 3rem;
}
@media (max-width: 900px) {
  .team-member-details {
    padding: 0 2rem;
  }
}
@media (max-width: 600px) {
  .team-member-details {
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .team-member-details {
    gap: 2rem;
    padding: 0 1rem;
  }
}

.team-member-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 600px) {
  .team-member-section {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .team-member-section {
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }
}
.team-member-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-member-section-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.25px;
}
@media (max-width: 600px) {
  .team-member-section-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 480px) {
  .team-member-section-title {
    font-size: 1.25rem;
  }
}

.team-member-section-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (max-width: 600px) {
  .team-member-section-list {
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .team-member-section-list {
    gap: 0.625rem;
  }
}

.team-member-section-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-member-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #404040;
}
@media (max-width: 600px) {
  .team-member-text {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .team-member-text {
    font-size: 0.875rem;
  }
}

.team-member-section-list--education .team-member-section-item {
  padding: 1rem 1.25rem;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 0.85rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .team-member-section-list--education .team-member-section-item {
    padding: 0.875rem 1rem;
    gap: 1rem;
    border-radius: 0.75rem;
  }
}
@media (max-width: 540px) {
  .team-member-section-list--education .team-member-section-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .team-member-section-list--education .team-member-section-item {
    padding: 0.75rem 0.875rem;
    gap: 0.625rem;
  }
}

.education-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .education-item {
    gap: 1rem;
  }
}
@media (max-width: 540px) {
  .education-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.education-item-main {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.education-degree {
  margin: 0;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #0a0a0a;
}
@media (max-width: 600px) {
  .education-degree {
    font-size: 1.0625rem;
  }
}
@media (max-width: 480px) {
  .education-degree {
    font-size: 1rem;
  }
}

.education-institution {
  margin: 0;
  font-size: 0.9375rem;
  color: #525252;
}
@media (max-width: 600px) {
  .education-institution {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .education-institution {
    font-size: 0.8125rem;
  }
}

.education-year {
  font-size: 0.8125rem;
  color: #1447e6;
  font-weight: 600;
}
@media (max-width: 600px) {
  .education-year {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .education-year {
    font-size: 0.6875rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .team-member-section,
  .team-member-hero,
  .team-member-photo-wrapper,
  .team-member-section-item {
    animation: tm-fade-in 0.5s ease both;
  }
}
@media (prefers-reduced-motion: no-preference) and (max-width: 600px) {
  .team-member-section,
  .team-member-hero,
  .team-member-photo-wrapper,
  .team-member-section-item {
    animation-duration: 0.3s;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .team-member-section:nth-child(2) {
    animation-delay: 0.05s;
  }
  .team-member-section:nth-child(3) {
    animation-delay: 0.1s;
  }
  .team-member-section:nth-child(4) {
    animation-delay: 0.15s;
  }
}
@keyframes tm-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonials-section {
  padding: 6rem 0;
  background-color: #ffffff;
  overflow: hidden;
}
.testimonials-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: #262626;
  font-weight: 700;
}
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .testimonials-section .section-title {
    font-size: 1.75rem;
  }
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-section .testimonial-card {
  padding: 3.5rem;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.testimonials-section .testimonial-card .quote-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: serif;
}
.testimonials-section .testimonial-card .testimonial-quote {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.testimonials-section .testimonial-card .testimonial-quote::before {
  display: none;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-quote {
    font-size: 1.125rem;
  }
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials-section .testimonial-card .testimonial-author .author-image {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: white;
}
.testimonials-section .testimonial-card .testimonial-author .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-author .author-image {
    width: 50px;
    height: 50px;
  }
}
.testimonials-section .testimonial-card .testimonial-author .author-info {
  display: flex;
  flex-direction: column;
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #262626;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-author .author-info .author-name {
    font-size: 1rem;
  }
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-role {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.2rem;
  color: #525252;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-author .author-info .author-role {
    font-size: 0.8rem;
  }
}
.testimonials-section .testimonial-card .testimonial-author .author-info .author-company {
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-author .author-info .author-company {
    font-size: 0.7rem;
  }
}
.testimonials-section .testimonial-card:nth-child(odd) {
  background-color: rgba(20, 71, 230, 0.05);
  color: #0a0a0a;
}
.testimonials-section .testimonial-card:nth-child(odd) .quote-icon {
  color: #1447e6;
}
.testimonials-section .testimonial-card:nth-child(odd) .author-company {
  color: #1447e6;
}
.testimonials-section .testimonial-card:nth-child(even) {
  background-color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  color: #262626;
  border: 1px solid #e5e5e5;
  margin-top: 5rem;
  margin-left: -4rem;
  z-index: 2;
  width: calc(100% + 4rem);
}
.testimonials-section .testimonial-card:nth-child(even) .quote-icon {
  color: #d4d4d4;
}
.testimonials-section .testimonial-card:nth-child(even) .author-company {
  color: #737373;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card:nth-child(even) {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    z-index: auto;
  }
}

.error-404-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 71, 230, 0.03) 0%, rgba(28, 57, 142, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.error-404-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 71, 230, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.error-404-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(28, 57, 142, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-404-container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-404-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.error-404-visual {
  margin-bottom: 2rem;
}

.error-404-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.error-404-number .digit {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #1447e6 0%, #1c398e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-404-number .digit-0 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404-number .gear-icon {
  width: clamp(4rem, 12vw, 8rem);
  height: clamp(4rem, 12vw, 8rem);
  color: #1447e6;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.error-404-text {
  margin-bottom: 2.5rem;
}

.error-404-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 1rem;
}

.error-404-description {
  font-size: 1.125rem;
  color: #737373;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.error-404-btn.btn-primary {
  background: linear-gradient(135deg, #1447e6 0%, #1c398e 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(20, 71, 230, 0.3);
}
.error-404-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 71, 230, 0.4);
}
.error-404-btn.btn-primary svg {
  transition: transform 0.3s ease;
}
.error-404-btn.btn-primary:hover svg {
  transform: translateX(-4px);
}
.error-404-btn.btn-secondary {
  background: transparent;
  color: #1447e6;
  border: 2px solid #1447e6;
}
.error-404-btn.btn-secondary:hover {
  background: rgba(20, 71, 230, 0.08);
  transform: translateY(-2px);
}

.error-404-suggestions {
  padding-top: 2rem;
  border-top: 1px solid rgba(115, 115, 115, 0.2);
}

.suggestions-label {
  font-size: 0.875rem;
  color: #737373;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.suggestions-list li a {
  color: #1447e6;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.suggestions-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1c398e;
  transition: width 0.3s ease;
}
.suggestions-list li a:hover {
  color: #1c398e;
}
.suggestions-list li a:hover::after {
  width: 100%;
}

@media (max-width: 576px) {
  .error-404-content {
    padding: 1rem;
  }
  .error-404-actions {
    flex-direction: column;
  }
  .error-404-actions .error-404-btn {
    width: 100%;
    justify-content: center;
  }
  .suggestions-list {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 0.525rem;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.195s ease, box-shadow 0.2s ease, transform 0.05s ease;
  font-size: 0.875rem;
}
.btn > a {
  text-decoration: none;
}
.btn > svg {
  height: 1rem;
}

.btn-primary {
  background-color: #1447e6;
  color: #ffffff;
}
.btn-primary * {
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #1c398e;
}
.btn-primary:hover * {
  color: #ffffff;
}

.why-choose-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.why-choose-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .why-choose-card {
    padding: 1.5rem;
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .why-choose-card {
    padding: 1.25rem;
    min-width: auto;
    max-width: none;
  }
}
.why-choose-card .card-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 124px;
  border-radius: 50%;
}
.why-choose-card .card-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
  stroke-width: 2;
}
@media (max-width: 768px) {
  .why-choose-card .card-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .why-choose-card .card-icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .why-choose-card .card-icon {
    width: 140px;
    height: 92px;
  }
}
.why-choose-card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #8b9dc3 0%, #9ca3af 100%);
  box-shadow: 0 4px 8px rgba(139, 157, 195, 0.15);
}
.why-choose-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #d1a3d9 0%, #c084a1 100%);
  box-shadow: 0 4px 8px rgba(209, 163, 217, 0.15);
}
.why-choose-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #93c5fd 0%, #a5b4fc 100%);
  box-shadow: 0 4px 8px rgba(147, 197, 253, 0.15);
}
.why-choose-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #86efac 0%, #a7f3d0 100%);
  box-shadow: 0 4px 8px rgba(134, 239, 172, 0.15);
}
.why-choose-card .card-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .why-choose-card .card-number {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .why-choose-card .card-number {
    font-size: 2.25rem;
  }
}
.why-choose-card .card-text {
  font-size: 1rem;
  color: #737373;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .why-choose-card .card-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .why-choose-card .card-text {
    font-size: 0.8125rem;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  flex: 1 1 calc(33.33% - 10px);
  min-width: 240px;
}
@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 100%;
    min-width: auto;
    gap: 10px;
    padding: 6px 0;
  }
}
@media (max-width: 480px) {
  .feature-item {
    gap: 8px;
    padding: 4px 0;
  }
}
.feature-item i[data-lucide=check-circle] {
  color: #1447e6;
  font-size: 18px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .feature-item i[data-lucide=check-circle] {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .feature-item i[data-lucide=check-circle] {
    font-size: 14px;
    width: 14px;
    height: 14px;
  }
}
.feature-item .feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: #262626;
  line-height: 1.4;
  flex: 1;
}
@media (max-width: 768px) {
  .feature-item .feature-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .feature-item .feature-text {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}

.team-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .team-card {
    padding: 1.5rem;
    min-height: 280px;
  }
}
@media (max-width: 480px) {
  .team-card {
    padding: 1.25rem;
    min-height: 260px;
  }
}
.team-card .team-image {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  border: 4px solid rgba(20, 71, 230, 0.1);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .team-card .team-image {
    width: 100px;
    height: 100px;
    margin-bottom: 1.25rem;
    border-width: 3px;
  }
}
@media (max-width: 480px) {
  .team-card .team-image {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
    border-width: 2px;
  }
}
.team-card .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.team-card .team-image:hover {
  border-color: rgba(20, 71, 230, 0.2);
}
.team-card .team-image:hover img {
  transform: scale(1.02);
}
.team-card .team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.team-card .team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .team-card .team-info h3 {
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
  }
}
@media (max-width: 480px) {
  .team-card .team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}
.team-card .team-info p {
  font-size: 1rem;
  color: #1c398e;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .team-card .team-info p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 480px) {
  .team-card .team-info p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
  }
}
.team-card .team-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 768px) {
  .team-card .team-social {
    gap: 0.625rem;
  }
}
@media (max-width: 480px) {
  .team-card .team-social {
    gap: 0.5rem;
  }
}
.team-card .team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .team-card .team-social a {
    width: 32px;
    height: 32px;
    border-radius: 5px;
  }
}
.team-card .team-social a:hover {
  color: white;
}
.team-card .team-social a i {
  width: 18px;
  height: 18px;
  color: #404040;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .team-card .team-social a i {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .team-card .team-social a i {
    width: 14px;
    height: 14px;
  }
}
.team-card .team-social a:has(i[data-lucide=facebook]):hover {
  background-color: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}
.team-card .team-social a:has(i[data-lucide=twitter]):hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.25);
}
.team-card .team-social a:has(i[data-lucide=linkedin]):hover {
  background-color: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
}
.team-card .team-social a:has(i[data-lucide=instagram]):hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #f09433;
  box-shadow: 0 4px 12px rgba(240, 148, 51, 0.25);
}
.team-card .team-social a:has(i[data-lucide=dribbble]):hover {
  background-color: #ea4c89;
  border-color: #ea4c89;
  box-shadow: 0 4px 12px rgba(234, 76, 137, 0.25);
}
.team-card .team-social a:has(i[data-lucide=github]):hover {
  background-color: #333;
  border-color: #333;
  box-shadow: 0 4px 12px rgba(51, 51, 51, 0.25);
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 100%;
  transition: transform 0.12s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-1px);
  border-color: #d4d4d4;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.blog-card .blog-card-image {
  aspect-ratio: 16/9;
  background: #e5e5e5;
  overflow: hidden;
}
.blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.blog-card .blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 auto;
}
.blog-card .blog-card-content .blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #737373;
}
.blog-card .blog-card-content .blog-card-meta .blog-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  background-color: #e5e5e5;
  color: #404040;
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-card .blog-card-content .blog-card-meta .blog-card-date {
  font-size: 0.75rem;
  color: #737373;
}
.blog-card .blog-card-content .blog-card-title {
  font-size: clamp(1.0625rem, 0.95rem + 0.4vw, 1.1875rem);
  line-height: 1.25;
  margin: 0;
  color: #0a0a0a;
}
.blog-card .blog-card-content .blog-card-author {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #404040;
  margin-top: auto;
}
.blog-card .blog-card-content .blog-card-author i[data-lucide] {
  width: 1rem;
  height: 1rem;
  color: #525252;
}
.blog-card .blog-card-content .blog-card-author .author-name {
  font-size: 0.8125rem;
  font-weight: 500;
}

.embla {
  max-width: 48rem;
  margin: auto;
  --slide-height: auto;
  --slide-spacing: 1rem;
  --slide-size: 100%;
  --brand-primary: rgb(47, 112, 193);
  --brand-secondary: rgb(116, 97, 195);
  --brand-alternative: rgb(19, 120, 134);
  --background-site: rgb(249, 249, 249);
  --background-code: rgb(244, 244, 244);
  --text-body: rgb(54, 49, 61);
  --text-comment: rgb(99, 94, 105);
  --text-high-contrast: rgb(49, 49, 49);
  --text-medium-contrast: rgb(99, 94, 105);
  --text-low-contrast: rgb(116, 109, 118);
  --detail-high-contrast: rgb(192, 192, 192);
  --detail-medium-contrast: rgb(234, 234, 234);
  --detail-low-contrast: rgb(240, 240, 242);
  --admonition-note: rgb(46, 109, 188);
  --admonition-warning: rgb(255, 196, 9);
  --admonition-danger: rgb(220, 38, 38);
  --brand-primary-rgb-value: 47,
  112,
  193;
  --brand-secondary-rgb-value: 116,
  97,
  195;
  --brand-alternative-rgb-value: 19,
  120,
  134;
  --background-site-rgb-value: 249,
  249,
  249;
  --background-code-rgb-value: 244,
  244,
  244;
  --text-body-rgb-value: 54,
  49,
  61;
  --text-comment-rgb-value: 99,
  94,
  105;
  --text-high-contrast-rgb-value: 49,
  49,
  49;
  --text-medium-contrast-rgb-value: 99,
  94,
  105;
  --text-low-contrast-rgb-value: 116,
  109,
  118;
  --detail-high-contrast-rgb-value: 192,
  192,
  192;
  --detail-medium-contrast-rgb-value: 234,
  234,
  234;
  --detail-low-contrast-rgb-value: 240,
  240,
  242;
  --admonition-note-rgb-value: 46,
  109,
  188;
  --admonition-warning-rgb-value: 255,
  196,
  9;
  --admonition-danger-rgb-value: 220,
  38,
  38;
}
@media (max-width: 450px) {
  .embla {
    --slide-height: auto;
    --slide-spacing: 1rem;
    --slide-size: 100%;
  }
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
  margin-left: calc(var(--slide-spacing) * -1);
}

.embla__slide {
  transform: translate3d(0, 0, 0);
  flex: 0 0 var(--slide-size);
  min-width: 0;
  padding-left: var(--slide-spacing);
}

.embla__slide__number {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  border-radius: 1.8rem;
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--slide-height);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}
.embla__slide__number > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.embla__button {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 3.6rem;
  height: 3.6rem;
  z-index: 1;
  border-radius: 50%;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 450px) {
  .embla__button {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.embla__button:disabled {
  color: var(--detail-high-contrast);
}

.embla__button__svg {
  width: 35%;
  height: 35%;
}

.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-right: -0.6rem;
}

.embla__dot {
  -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: transparent;
  touch-action: manipulation;
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 450px) {
  .embla__dot {
    width: 1.6rem;
    height: 1.2rem;
  }
}

.embla__dot:after {
  box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  content: "";
}
@media (max-width: 450px) {
  .embla__dot:after {
    width: 1rem;
    height: 1rem;
  }
}

.embla__dot--selected:after {
  box-shadow: inset 0 0 0 0.2rem var(--text-body);
}

.marquee-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .marquee-wrapper {
    height: 100px;
  }
}

.fade-left, .fade-right {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  gap: 0;
}

.marquee-image {
  width: auto;
  height: 120px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .marquee-image {
    width: 60px;
    height: 60px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  min-width: 300px;
  max-width: 400px;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast.success {
  background: #f0fdf4;
  border-color: #10b981;
}
.toast.success .toast-icon {
  background: #d1fae5;
  color: #059669;
}
.toast.success .toast-title {
  color: #065f46;
}
.toast.error {
  background: #fef2f2;
  border-color: #ef4444;
}
.toast.error .toast-icon {
  background: #fee2e2;
  color: #dc2626;
}
.toast.error .toast-title {
  color: #991b1b;
}
.toast.warning {
  background: #fffbeb;
  border-color: #f59e0b;
}
.toast.warning .toast-icon {
  background: #fef3c7;
  color: #d97706;
}
.toast.warning .toast-title {
  color: #92400e;
}
.toast.info {
  background: #eff6ff;
  border-color: #3b82f6;
}
.toast.info .toast-icon {
  background: #dbeafe;
  color: #2563eb;
}
.toast.info .toast-title {
  color: #1e40af;
}
.toast .toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.toast .toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.toast .toast-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
  margin: 0;
}
.toast .toast-message {
  font-size: 0.875rem;
  color: #374151;
  margin: 0;
  line-height: 1.4;
}
.toast .toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.toast .toast-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #1f2937;
}
.toast .toast-close:active {
  background: rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    min-width: auto;
    max-width: none;
  }
}/*# sourceMappingURL=main.css.map */