@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-UltraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-DemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-ExtraBlack.woff2') format('woff2');
  font-weight: 950;
  font-style: normal;
}
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanX-Heavy.woff2') format('woff2');
  font-weight: 960;
  font-style: normal;
}

:root {
  --bg: #f7f7f7;
  --card: rgba(255, 255, 255, 0.75);
  --border: rgba(0, 0, 0, 0.08);
  --text: #111;
  --muted: #555;
  --accent: #ef4444;
  --blur: 14px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "IRANYekanX", "Inter", "Vazirmatn", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 0 20px 64px;
  padding: 0px;
}
/* هدر */
.header-phone-mobile {
  display: none;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  margin-right: 0.7rem;
  margin-left: 0.2rem;
  direction: ltr;
}
.main-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.main-header.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo img {
  height: 38px;
  display: block;
}
.navbar {
  flex: 1 1 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #222;
  margin-left: 0.7rem;
  z-index: 120;
}
.close-menu {
  display: none;
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #222;
  cursor: pointer;
  z-index: 130;
}
.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li a {
  text-decoration: none;
  color: #222;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-list li a:hover {
  color: var(--accent);
}
.header-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  text-decoration: none;
  font-weight: 300;
  display: inline-block;
}
.header-btn:hover {
  background: #333;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.side-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: opacity 0.3s;
}
.side-overlay.active {
  display: block;
}
.hide-menu-toggle {
  display: none !important;
}
.has-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  border-radius: 12px;
  min-width: 170px;
  z-index: 200;
  padding: 0.5rem 0;
  margin-top: 28px;
  border: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.has-dropdown:hover > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.2rem;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  border-radius: 8px;
}
.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: var(--accent);
}
.dropdown-arrow {
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.3em;
  transition: transform 0.25s, filter 0.25s;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(1) brightness(0.5);
}
.has-dropdown:hover > a .dropdown-arrow,
.has-dropdown.open > a .dropdown-arrow {
  transform: rotate(180deg);
  filter: none;
}
.page {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
h1, h2 { margin: 0 0 12px; }
.sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
}
/* سکشن اول (دوستونه) */
.feature {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  backdrop-filter: blur(var(--blur));
  margin-top: 20px;
}
.feature__grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.feature__text,
.feature__media {
  flex: 1 1 320px;
}
.feature__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
  font-size: 21px;
}
.feature__subtitle {
  margin: 0;
  color: var(--muted);
}
.video-frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px dashed var(--border);
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* سکشن دوم: بنر تصویری تمام عرض و تمام ارتفاع */
.banner {
  width: 100%;

  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #000;
}
.banner img {
  width: 100%;
  object-fit: cover;
  display: block;
}
a { color: var(--accent); text-decoration: none; }

/* سکشن سوم: سه باکس انتخاب 50 کاوا */
.options {
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}
.options__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.option {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}
.option button {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  font-family: 'IRANYekanX';
}
.option button:hover {
  opacity: 0.9;
}

/* سکشن چهارم: محتوای متنی و کانتنت */
.content-section {
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}
.content-section__header h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.content-section__header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.content-section__body {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
.content-section__body ul {
  margin: 0;
  padding-right: 18px;
}
.content-section__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.content-section__body table th,
.content-section__body table td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: right;
}

/* سکشن پنجم: گرید 6 ویدیوی عمودی */
.videos-grid {
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
}
.videos-grid__header {
  margin-bottom: 20px;
  text-align: right;
}
.videos-grid__header h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--text);
}
.videos-grid__header h4 {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  font-weight: normal;
}
.videos-grid__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.video-item {
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.video-item::before {
  content: "";
  display: block;
  /* نسبت 9:16 معادل 1920x1080 عمودی (تقریباً 177%) */
  padding-top: 177%;
}
.video-item video,
.video-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* سکشن ششم: سوالات متداول (FAQ) */
.faq-section {
  width: 100%;
  
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--blur));
}
.faq-title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: none;
  transition: border 0.2s;
}
.faq-item.open {
  border-color: var(--accent);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  padding: 16px 20px;
  text-align: right;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.faq-item.open .faq-question {
  background: rgba(239, 68, 68, 0.05);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(247, 247, 247, 0.5);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding: 0 20px;
  transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 20px;
}
.faq-icon {
  width: 0.8em;
  height: 0.8em;
  margin-right: 8px;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform 0.25s, filter 0.25s;
  filter: grayscale(1) brightness(0.5);
  display: inline-block;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  filter: none;
}

/* سکشن هفتم: نظرات و سوالات مشتریان */
.comments-section {
  padding: 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(var(--blur));
}
.comments-title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
}
.comments-list {
  display: grid;
  gap: 16px;
}
.comment-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.comment-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}
.comment-header {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.comment-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.comment-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}
.comment-date {
  font-size: 13px;
  color: var(--muted);
  direction: ltr;
  text-align: left;
}
.comment-question {
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(239, 68, 68, 0.05);
  border-radius: 8px;
  border-right: 3px solid var(--accent);
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}
.comment-question strong {
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
}
.comment-answer {
  padding: 12px;
  background: rgba(247, 247, 247, 0.8);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.comment-answer strong {
  color: var(--text);
  font-weight: 600;
  margin-left: 6px;
}

/* واکنش‌گرا: در موبایل ۳ ویدیو در هر ردیف */
@media (max-width: 768px) {
  .videos-grid__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .options__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-section {
    padding: 20px;
  }
  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 13px;
    padding: 0 16px;
  }
  .faq-item.open .faq-answer {
    padding: 14px 16px;
  }
  .comments-section {
    padding: 20px;
  }
  .comment-item {
    padding: 16px;
  }
  .comment-name {
    font-size: 15px;
  }
  .comment-date {
    font-size: 12px;
  }
  .comment-question,
  .comment-answer {
    font-size: 13px;
    padding: 10px;
  }
}

/* دکمه‌های شناور تماس و واتساپ */
.floating-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  min-width: 120px;
  backdrop-filter: blur(10px);
}
.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.floating-btn:active {
  transform: translateY(0);
}
.floating-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}
.call-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #dc2626 100%);
}
.call-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, var(--accent) 100%);
}

@media (max-width: 768px) {
  .floating-buttons {
    left: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .floating-btn {
    padding: 12px 16px;
    font-size: 14px;
    min-width: 110px;
  }
  .floating-btn svg {
    width: 18px;
    height: 18px;
  }
  .floating-btn span {
    display: none;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    padding: 0;
  }
}

/* فوتر */
.site-footer {
  background: #F7F7F7;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 2.5rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.footer-col h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer-col p, .footer-col ul {
  font-size: 0.98rem;
  color: #444;
  margin: 0 0 0.7rem 0;
  line-height: 2;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.4rem;
}
.footer-col ul li a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #dc2626;
}
.footer-cols-row {
  display: block;
}
.footer-copyright {
  background: #fff;
  color: #111;
  text-align: center;
  font-size: 0.91rem;
  font-weight: 300;
  padding: 1.1rem 0 1.2rem 0;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
}

/* باکس مشاوره شناور */
.advisor-fixed-box {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255,255,255,0.28);
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  min-width: 320px;
  border: 1px solid rgba(255,255,255,0.22);
  font-family: 'IRANYekanX', Tahoma, sans-serif;
  animation: advisor-fade-in 0.7s cubic-bezier(.39,.58,.57,1) 1;
  transition: box-shadow 0.2s, background 0.2s;
}
@keyframes advisor-fade-in {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.advisor-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.advisor-phone {
  font-size: 1.18rem;
  font-weight: 400;
  color: #222;
  letter-spacing: 1px;
  direction: ltr;
  font-family: 'IRANYekanX', Tahoma, sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
}
.advisor-phone-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}
.advisor-request-btn {
  background: rgba(239, 68, 68, 0.13);
  color: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  backdrop-filter: blur(2px);
  font-family: 'IRANYekanX', Tahoma, sans-serif;
}
.advisor-request-btn:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}
.advisor-hide {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.4s;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .logo-group {
    order: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .navbar {
    order: 3;
  }
  .header-phone-mobile {
    order: 2;
    display: block;
  }
  .header-btn {
    order: 4;
  }
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    padding: 0.7rem 0.7rem;
    font-size: 0.96rem;
  }
  .nav-list {
    justify-content: center;
    gap: 1.2rem;
  }
  .header-inner .menu-toggle {
    display: block;
  }
  .header-inner .navbar.open ~ .menu-toggle {
    display: none !important;
  }
  .navbar {
    background: #fff !important;
    backdrop-filter: none !important;
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    box-shadow: -2px 0 24px 0 rgba(0,0,0,0.08);
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .navbar.open {
    right: 0;
  }
  .close-menu {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: 2.5rem;
  }
  .logo {
    margin-right: 0.5rem;
  }
  .nav-list li a:hover,
  .nav-list li a:focus-visible {
    background: #f3f4f6 !important;
    color: var(--accent) !important;
  }
  .dropdown-menu {
    position: static !important;
    display: block !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    margin-top: 0.5rem !important;
    border-radius: 8px !important;
  }
  .dropdown-arrow {
    margin-right: 0.6em;
  }
}
@media (min-width: 901px) {
  .menu-toggle, .close-menu {
    display: none !important;
  }
  .navbar {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0 !important;
  }
  .nav-list {
    flex-direction: row !important;
    gap: 2rem !important;
    margin-top: 0 !important;
  }
  .header-phone-mobile {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .site-footer {
    padding: 1.5rem 0 0.7rem 0;
  }
  .footer-cols-row {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
  }
  .footer-cols-row .footer-col {
    flex: 1 1 0;
    min-width: 0;
  }
  .advisor-fixed-box {
    min-width: 300px;
    width: auto;
    padding: 10px 24px;

    border-radius: 18px;
  }
  .advisor-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .advisor-request-btn {
    width: 100%;
    padding: 8px 20px;
    font-size: 0.95rem;
  }
  .advisor-phone {
    justify-content: center;
    font-size: 1rem;
  }
}

