/* ==================== Design Tokens ==================== */
:root {
  --color-primary: #191970;
  --color-secondary: #F6AD55;
  --color-secondary-dark: #ED8936;
  --color-text-dark: #36353A;
  --color-text-gray: #5E6B84;
  --color-text-light: #414651;
  --color-border: #8F9192;
  --color-border-light: #877777;
  --color-bg-white: #FFFFFF;
  --color-bg-purple: #F8F6FF;
  --color-bg-input: #F0F1F2;
  --color-bg-body: #FFFFFF;
  --color-hero-top: #FFF3F0;
  --color-hero-bottom: #D1D1F7;
  --color-input-text: #121115;
  --color-purple-accent: #8B7BAB;
  --color-purple-medium: #8080F5;
  --color-divider: #E8E4F0;
  --color-selected-bg: #F8F6FF;

  --font-title: 'Philosopher', serif;
  --font-body: 'Roboto', sans-serif;

  --content-width-mobile: 375px;
  --content-width-desktop: 768px;
  --mobile-breakpoint: 800px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-feature: 0 4px 12px rgba(25, 25, 112, 0.06);
  --radius-card: 24px;
  --radius-input: 4px;
  --radius-faq: 12px;
  --radius-feature: 16px;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overscroll-behavior: none; /* Prevent in-app browser swipe-to-close */
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ==================== Section Wrapper ==================== */
.section-wrapper {
  width: 100%;
  padding: 48px 20px;
}

.section-content {
  max-width: var(--content-width-desktop);
  margin: 0 auto;
}

@media (max-width: 800px) {
  .section-content {
    max-width: var(--content-width-mobile);
  }
}

/* ==================== Navbar ==================== */
.navbar {
  background: var(--color-bg-white);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.navbar-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-title);
}

.navbar-logo-info {
  display: flex;
  flex-direction: column;
}

.navbar-logo-text {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.navbar-logo-subtitle {
  font-size: 10px;
  color: var(--color-text-gray);
  font-weight: 400;
  line-height: 1.2;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.2s;
}

.navbar-link:hover {
  color: var(--color-primary);
}

.navbar-btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 48px;
  padding: 0 12px;
  margin-left: 16px;
  background: #E4E0F8;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
  cursor: pointer;
  transition: background-color 0.2s;
  text-decoration: none;
}

.navbar-btn-login:hover {
  background: #d9d0f0;
}

.navbar-mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.navbar-mobile-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  color: var(--color-primary);
  text-decoration: none;
  transition: background-color 0.2s;
}

.navbar-mobile-login:hover {
  background: #E4E0F8;
}

.navbar-mobile-login .material-icons-outlined {
  font-size: 22px;
}

.navbar-hamburger {
  display: flex;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.navbar-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 16px;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.navbar-mobile-menu.open {
  display: flex;
}

/* Desktop dropdown for "Giới thiệu" */
.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}

.navbar-dropdown-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.navbar-dropdown.open .navbar-dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px 0;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 200;
}

.navbar-dropdown.open .navbar-dropdown-menu {
  display: block;
}

.navbar-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.navbar-dropdown-item:hover {
  background: rgba(25, 25, 112, 0.05);
}

.navbar-dropdown-item-arrow {
  font-size: 24px;
  color: var(--color-primary);
}

/* Mobile dropdown for "Giới thiệu" */
.navbar-mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.navbar-mobile-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}

.navbar-mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 4px 0 4px 12px;
}

.navbar-mobile-dropdown.open .navbar-mobile-dropdown-menu {
  display: flex;
}

.navbar-mobile-dropdown.open .navbar-dropdown-arrow {
  transform: rotate(180deg);
}

.navbar-mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}

.navbar-mobile-dropdown-item-arrow {
  font-size: 24px;
  color: var(--color-primary);
}

@media (max-width: 800px) {
  .navbar-links {
    display: none;
  }
  .navbar-mobile-actions {
    display: flex;
  }
}

/* ==================== Hero Section ==================== */
.hero-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #2D2B6B;
}

/* Background illustration image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/assets/images/common/img_bg_hero_section.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  max-width: var(--content-width-desktop);
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin: 0 64px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .hero-content {
    padding: 24px 16px;
  }
  .hero-card {
    margin: 0;
  }
  .hero-title {
    font-size: 24px;
  }
}

/* ==================== Form ==================== */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.form-row-3 {
  display: flex;
  gap: 12px;
}

.form-row-3 > * {
  flex: 1;
  min-width: 0;
}

.form-group {
  flex: 1;
  min-width: 0;
}

.form-group-2 {
  flex: 2;
  min-width: 0;
}

.form-input {
  width: 100%;
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-input-text);
  background: var(--color-bg-white);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--color-primary);
}

.form-input::placeholder {
  color: var(--color-input-text);
}

.form-helper {
  font-size: 13px;
  color: var(--color-text-gray);
  line-height: 22px;
  margin: 16px 0;
}

.form-helper b {
  font-weight: 700;
}

.form-helper-time {
  font-size: 13px;
  color: var(--color-text-gray);
  line-height: 22px;
  margin: 12px 0;
}

.form-helper-time b {
  font-weight: 700;
}

/* Gender selector */
.gender-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
}

.gender-label {
  font-size: 13px;
  color: var(--color-text-gray);
}

.gender-option {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.gender-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.gender-option.selected .gender-radio {
  border-color: var(--color-primary);
}

.gender-radio-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  display: none;
}

.gender-option.selected .gender-radio-inner {
  display: block;
}

.gender-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-dark);
}

/* Custom Dropdown */
.custom-dropdown {
  position: relative;
  height: 34px;
  cursor: pointer;
}

.dropdown-trigger {
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.dropdown-trigger-text {
  font-size: 13px;
  color: var(--color-input-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.dropdown-trigger-text.placeholder {
  color: var(--color-input-text);
}

.dropdown-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple-accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 50;
  max-height: 300px;
  overflow: hidden;
  flex-direction: column;
}

.custom-dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown-search {
  padding: 8px;
}

.dropdown-search input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border: none;
  border-radius: 25px;
  background: var(--color-bg-input);
  font-size: 13px;
  color: var(--color-input-text);
  outline: none;
  font-family: var(--font-body);
}

.dropdown-search input::placeholder {
  color: var(--color-border);
}

.dropdown-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-purple-accent);
  font-size: 18px;
  pointer-events: none;
}

.dropdown-search {
  position: relative;
}

.dropdown-list {
  overflow-y: auto;
  max-height: 260px;
}

.dropdown-item {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--color-input-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.1s;
  border-bottom: 1px solid var(--color-bg-input);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--color-bg-input);
}

.dropdown-item.selected {
  background: var(--color-selected-bg);
  color: var(--color-primary);
  font-weight: 600;
}

.dropdown-item-check {
  display: none;
  color: var(--color-primary);
  font-size: 18px;
}

.dropdown-item.selected .dropdown-item-check {
  display: inline;
}

.dropdown-empty {
  padding: 16px;
  font-size: 13px;
  color: var(--color-border);
  text-align: center;
}

/* Dropdown overlay backdrop */
.dropdown-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
}

.dropdown-backdrop.active {
  display: block;
}

/* Form spacing */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Form error */
.form-error {
  color: #E53E3E;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Buttons */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-bg-white);
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  align-self: center;
}

.btn-primary:hover {
  background: #2a2a8a;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary svg,
.btn-primary .btn-icon {
  width: 18px;
  height: 18px;
}

.btn-primary.loading .btn-icon {
  display: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-primary);
  border: none;
  border-radius: 0;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: color 0.2s;
  align-self: center;
}

.btn-secondary:hover {
  color: #2a2a8a;
}

/* Loading spinner */
.btn-loading {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-primary.loading .btn-loading {
  display: inline-block;
}

.btn-primary.loading .btn-text,
.btn-primary.loading svg {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Desktop form layout */
@media (min-width: 801px) {
  .form-row {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .form-row-desktop {
    display: flex;
    gap: 16px;
  }
  .form-row-desktop > * {
    flex: 1;
    min-width: 0;
  }
}

/* Mobile form layout */
@media (max-width: 800px) {
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  .form-row-3 {
    gap: 12px;
  }
  .form-row-desktop {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

/* ==================== Guide Section ==================== */
.guide-section {
  background: var(--color-bg-white);
}

.guide-title-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}

.guide-title-bar {
  width: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
  flex-shrink: 0;
}

.guide-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.3;
}

.guide-desc {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 28px;
}

.guide-step {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.guide-step:last-child {
  margin-bottom: 0;
}

.guide-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-bg-white);
}

.guide-step-text {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.guide-step-text b {
  font-weight: 700;
}

/* ==================== Why Choose Section ==================== */
.why-section {
  background: var(--color-bg-purple);
}

.why-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 12px;
}

.why-subtitle {
  font-size: 16px;
  color: var(--color-text-dark);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 28px;
}

.why-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-feature);
  padding: 20px;
  box-shadow: var(--shadow-feature);
  margin-bottom: 16px;
}

.why-card:last-child {
  margin-bottom: 0;
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

/* ==================== Meaning Section ==================== */
.meaning-section {
  background: var(--color-bg-white);
}

.meaning-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.meaning-desc {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.meaning-desc b {
  font-weight: 700;
}

.meaning-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.meaning-item:last-child {
  margin-bottom: 0;
}

.meaning-icon {
  color: var(--color-secondary);
  font-size: 18px;
  padding-top: 3px;
  flex-shrink: 0;
}

.meaning-text {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.meaning-text b {
  font-weight: 700;
}

/* ==================== FAQ Section ==================== */
.faq-section {
  background: var(--color-bg-white);
}

.faq-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 28px;
}

.faq-card {
  border: 1px solid rgba(25, 25, 112, 0.1);
  border-radius: var(--radius-faq);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-card:last-child {
  margin-bottom: 0;
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background: rgba(25, 25, 112, 0.02);
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
}

.faq-arrow {
  color: var(--color-primary);
  font-size: 24px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-card.expanded .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-card.expanded .faq-answer {
  max-height: 300px;
}

.faq-answer-text {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.6;
}

/* ==================== Footer ==================== */
.footer-section {
  background: var(--color-bg-white);
}

.footer-content-row {
  display: flex;
  gap: 48px;
}

.footer-brand {
  flex: 2;
}

.footer-contact {
  flex: 3;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-app {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.footer-logo-type {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1.375;
  margin-bottom: 16px;
}

.footer-downloads {
  display: flex;
  gap: 12px;
}

.footer-download-badge {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-download-badge:hover {
  opacity: 0.8;
}

.footer-download-badge img {
  height: 40px;
  width: auto;
}

.footer-contact-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-input-text);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 128, 245, 0.15);
  border-radius: 16px;
}

.footer-contact-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-contact-label {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.footer-contact-value {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-light);
}

.footer-contact-value.link {
  text-decoration: underline;
  cursor: pointer;
}

.footer-divider {
  height: 1px;
  background: var(--color-divider);
  margin: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-dark);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-social-link:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .footer-content-row {
    flex-direction: column;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-wrapper.footer-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
