/* ===================================
   Self-hosted Font
   =================================== */
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/JetBrainsMono-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/JetBrainsMono-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ===================================
   Global Styles & Reset
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  background-color: #DADAD2;
  color: #2C2C2C;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #2C2C2C;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* ===================================
   Login Screen
   =================================== */
.login-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #DADAD2;
}

.login-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 2.56vh 2rem 3rem;
}

.notification-banner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 1.25rem auto 1.25rem;
  padding: 0.9rem 2.5rem 0.9rem 1rem;
  border: 1.2px solid;
  border-radius: 10px;
  background-color: #DADAD2;
}

.notification-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.notification-close {
  position: absolute;
  top: 0.35rem;
  right: 0.55rem;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 1.1rem;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  cursor: pointer;
  line-height: 1;
}

.notification-blue {
  color: #2563EB;
  border-color: #2563EB;
}

.notification-yellow {
  color: #8A6D00;
  border-color: #8A6D00;
}

.notification-red {
  color: #C0392B;
  border-color: #C0392B;
}

.login-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2C2C2C;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.login-description {
  font-size: 1.05rem;
  color: #5A5A5A;
  margin-bottom: 1rem;
  line-height: 1.7;
  white-space: nowrap;
}

.login-access-note {
  font-size: 0.95rem;
  color: #5A5A5A;
  margin-top: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 900px;
}

.inline-link {
  color: #2C2C2C;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: #2563EB;
  opacity: 1;
}

/* Public Header (login page) */
.public-header {
  background-color: #DADAD2;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.public-nav {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.public-nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.public-nav-menu li a {
  font-size: 1rem;
  font-weight: 500;
  color: #5A5A5A;
  padding: 0.3rem 0;
}

.public-nav-menu li a:hover {
  color: #2C2C2C;
  opacity: 1;
}

.public-nav-active {
  color: #2C2C2C !important;
  font-weight: 600 !important;
  border-bottom: 2px solid #2C2C2C;
}

/* Public Hamburger Menu */
.public-hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.public-hamburger span {
  width: 25px;
  height: 3px;
  background-color: #2C2C2C;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.public-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Public Footer (login page) */
.public-footer {
  background-color: #DADAD2;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.public-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.public-footer-inner a {
  font-size: 0.9rem;
  color: #5A5A5A;
}

.public-footer-inner a:hover {
  color: #2C2C2C;
  opacity: 1;
}

.public-footer-inner span {
  font-size: 0.9rem;
  color: #5A5A5A;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.login-input {
  width: 100%;
  max-width: 320px;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  color: #2C2C2C;
  background-color: #fff;
  border: 1.5px solid #B5B5AD;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}

.login-input:focus {
  border-color: #2C2C2C;
}

.login-input::placeholder {
  color: #999;
}

.login-btn {
  width: 100%;
  max-width: 320px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  color: #DADAD2;
  background-color: #2C2C2C;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.3px;
}

.login-btn:hover {
  background-color: #444444;
}

.forgot-password-link {
  font-size: 0.9rem;
  color: #5A5A5A;
  margin-top: 0.25rem;
}

.forgot-password-link:hover {
  color: #2C2C2C;
}

.login-error {
  font-size: 0.9rem;
  color: #C0392B;
  max-width: 320px;
  text-align: center;
}

.reset-message {
  font-size: 1.05rem;
  color: #5A5A5A;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.password-field-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.password-field-wrapper .password-input {
  padding-right: 3rem;
  width: 100%;
  box-sizing: border-box;
}

.eye-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  color: #9A9A9A;
  transition: color 0.15s;
}

.eye-btn:hover,
.eye-btn.eye-active {
  color: #2C2C2C;
}

.eye-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===================================
   Header & Navigation
   =================================== */
.site-header {
  background-color: #DADAD2;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.main-nav {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.nav-menu li a {
  font-size: 1rem;
  font-weight: 500;
  color: #5A5A5A;
  padding: 0.3rem 0;
}

.nav-menu li a:hover {
  color: #2C2C2C;
  opacity: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #2C2C2C;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   Main Content
   =================================== */
.main-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2.56vh 2rem 3rem;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 0;
}

.hero .login-title {
  margin-bottom: 1rem;
}

.hero .login-description {
  margin-bottom: 0;
}

.main-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #2C2C2C;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.main-description {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #5A5A5A;
}

/* Category Sections */
.category-section {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #2C2C2C;
}

.category-description {
  text-align: center;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: #5A5A5A;
}

/* Apps Grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #DADAD2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.app-icon-placeholder {
  width: 80px;
  height: 80px;
  color: #2C2C2C;
}

.app-icon-placeholder svg {
  width: 100%;
  height: 100%;
}

.app-name {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: #2C2C2C;
}

/* ===================================
   Utility
   =================================== */
.hidden {
  display: none !important;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
  background-color: #DADAD2;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-inner a {
  font-size: 0.9rem;
  color: #5A5A5A;
}

.footer-inner a:hover {
  color: #2C2C2C;
  opacity: 1;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #2C2C2C;
  letter-spacing: 0.3px;
}

/* ===================================
   Mobile Responsive Styles
   =================================== */

/* Tablet and below */
@media (max-width: 768px) {
  .login-title {
    font-size: 2.5rem;
    white-space: normal;
    line-height: 1.1;
  }

  .login-description {
    font-size: 1rem;
    white-space: normal;
  }

  .main-title {
    font-size: 2.2rem;
    white-space: normal;
  }

  .main-description {
    font-size: 1.05rem;
  }

  .category-title {
    font-size: 1.7rem;
  }

  .apps-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .app-icon-placeholder {
    width: 60px;
    height: 60px;
  }

  .site-footer .footer-inner {
    text-align: center;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: -2rem;
    right: -2rem;
    background-color: #EDE8E3;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    max-height: 300px;
    padding: 1rem 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    padding: 1rem;
  }

  /* Public Mobile Navigation */
  .public-hamburger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
  }

  .public-nav-menu {
    position: absolute;
    top: 100%;
    left: -2rem;
    right: -2rem;
    background-color: #EDE8E3;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  }

  .public-nav-menu.active {
    max-height: 300px;
    padding: 1rem 0;
  }

  .public-nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
  }

  .public-nav-menu li:last-child {
    border-bottom: none;
  }

  .public-nav-menu li a {
    padding: 1rem;
    display: block;
  }

  .public-nav-active {
    border-bottom: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .site-header {
    padding: 1rem;
  }

  .public-header {
    padding: 1.25rem 1rem;
  }

  .main-content {
    padding: 2rem 1rem;
  }

  .main-title {
    font-size: 1.8rem;
    white-space: normal;
  }

  .main-description {
    font-size: 1rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .category-description {
    font-size: 1rem;
  }

  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .app-card {
    padding: 1rem;
  }

  .app-icon-placeholder {
    width: 50px;
    height: 50px;
  }

  .app-name {
    font-size: 0.9rem;
  }

  .hero {
    margin-bottom: 2.5rem;
  }

  .category-section {
    margin-bottom: 2.5rem;
  }

  .site-footer {
    padding: 1.5rem 1rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }

  .login-title {
    font-size: 2.2rem;
    white-space: normal;
    line-height: 1.1;
  }

  .login-description {
    font-size: 1rem;
    white-space: normal;
  }

  .notification-banner {
    margin: 0.9rem auto 1rem;
    padding: 0.8rem 2rem 0.8rem 0.8rem;
  }

  .notification-banner p {
    font-size: 0.85rem;
  }

  .admin-form-row {
    flex-direction: column;
  }

  .admin-select,
  .admin-btn {
    max-width: 100%;
  }

  .admin-table {
    font-size: 0.75rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.5rem 0.35rem;
    font-size: 0.75rem;
  }

  .admin-table th {
    font-size: 0.65rem;
  }

  .admin-table th:first-child,
  .admin-table td:first-child {
    width: 42%;
  }

  .admin-table th:nth-child(2),
  .admin-table td:nth-child(2) {
    width: 16%;
  }

  .admin-table th:nth-child(3),
  .admin-table td:nth-child(3) {
    width: 42%;
  }

  .action-btns {
    gap: 0.3rem;
    align-items: stretch;
  }

  .role-btn,
  .remove-btn {
    font-size: 0.56rem;
    padding: 0.075rem 0.12rem;
    width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: center;
    box-sizing: border-box;
  }

  .role-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
  }

  .you-label {
    font-size: 0.7rem;
  }
}

/* ===================================
   Admin Panel
   =================================== */
.admin-section {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.admin-form-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.admin-form-row .login-input {
  max-width: none;
  flex: 1;
}

.admin-select {
  width: auto;
  min-width: 100px;
  flex: 0 0 auto;
}

.admin-btn {
  max-width: none;
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.85rem 1.5rem;
}

.admin-message {
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.msg-success {
  color: #27AE60;
}

.msg-error {
  color: #C0392B;
}

.reset-link {
  color: #2C2C2C;
  text-decoration: underline;
  word-break: break-all;
  font-size: 0.85rem;
}

/* Users Table */
.admin-table-container {
  overflow-x: hidden;
  width: 100%;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 1rem 1rem;
  border-bottom: 1px solid #B5B5AD;
  vertical-align: middle;
  overflow-wrap: break-word;
  word-break: break-word;
}

.admin-table th:first-child,
.admin-table td:first-child {
  width: 50%;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
  width: 20%;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
  width: 30%;
}

.admin-table th {
  font-weight: 600;
  color: #2C2C2C;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.role-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.role-admin {
  background-color: #2C2C2C;
  color: #DADAD2;
}

.role-user {
  background-color: #B5B5AD;
  color: #2C2C2C;
}

.you-label {
  font-size: 0.85rem;
  color: #5A5A5A;
  font-style: italic;
  white-space: nowrap;
}

.action-cell {
  vertical-align: middle;
}

.action-btns {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  width: 100%;
}

.role-btn {
  background: none;
  border: 1.5px solid #2C2C2C;
  color: #2C2C2C;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  transition: all 0.2s ease;
}

.role-btn:hover {
  background-color: #2C2C2C;
  color: #DADAD2;
}

.remove-btn {
  background: none;
  border: 1.5px solid #C0392B;
  color: #C0392B;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.remove-btn:hover {
  background-color: #C0392B;
  color: #fff;
}

.admin-empty {
  text-align: center;
  color: #5A5A5A;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.nav-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Confirmation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-box {
  background-color: #EFEFEB;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-box p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #2C2C2C;
  word-break: break-word;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.modal-btn-danger {
  background-color: #C0392B;
  max-width: none;
  width: auto;
  padding: 0.7rem 1.5rem;
}

.modal-btn-danger:hover {
  background-color: #A93226;
}

.modal-btn-cancel {
  background-color: #B5B5AD;
  color: #2C2C2C;
  max-width: none;
  width: auto;
  padding: 0.7rem 1.5rem;
}

.modal-btn-cancel:hover {
  background-color: #9E9E96;
}

/* Inactivity Warning Toast */
.inactivity-toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2C2C2C;
  color: #DADAD2;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "JetBrains Mono", Menlo, Consolas, monospace;
  z-index: 3000;
  opacity: 0;
  transition: bottom 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.inactivity-toast.visible {
  bottom: 2rem;
  opacity: 1;
}

/* ===================================
   About Page
   =================================== */
.page-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.about-section {
  margin-bottom: 4rem;
}

.about-image {
  text-align: center;
  margin-bottom: 1rem;
}

.about-image img {
  width: 120px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.about-text a {
  margin-left: 0.3rem;
  font-style: italic;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-text a:hover {
  color: rgb(64, 167, 246);
}

.contact-section {
  margin-top: 3rem;
  text-align: center;
}

.contact-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===================================
   FAQs Page
   =================================== */
.faqs-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  color: #2C2C2C;
  background-color: #DADAD2;
  border-radius: 12px;
}

.faq-item a {
  margin-left: 0.3rem;
  font-style: italic;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-item a:hover {
  color: rgb(64, 167, 246);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .about-image {
    margin: 0 auto;
  }
}
