.elementor-631 .elementor-element.elementor-element-d505c34{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e8b2a97 *//* ═══════════════════════════════════════════
   CovidRxExchange — terms-conditions.css
   Paste this in: Code Snippets > CSS Snippet
   (or Elementor > Custom CSS)
 
   This is the COMPLETE stylesheet — exact copy
   of home page styles.css. No changes needed.
═══════════════════════════════════════════ */
 
:root {
  --forest:     #1A2F5E;
  --forest-mid: #1E3A72;
  --forest-lt:  #2550A0;
  --copper:     #C4713A;
  --copper-lt:  #D9896A;
  --copper-pale:#F2DDD0;
  --ivory:      #F7F3ED;
  --ivory-dark: #EDE7DC;
  --cream:      #FAF8F4;
  --ink:        #1A1612;
  --ink-mid:    #3D3830;
  --ink-muted:  #7A7268;
  --white:      #FFFFFF;
  --rule:       rgba(26,47,94,0.12);
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
html { scroll-behavior: smooth; overflow-x: hidden; }
 
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: none;
  margin: 0;
  padding: 0;
}
 
/* ── UTILITY ── */
.copper-text { color: var(--copper); }
 
/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--copper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .3s, height .3s, background .3s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,113,58,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .3s, height .3s;
}
 
/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
 
/* ── Hero Left ── */
.hero-left {
  background: var(--forest);
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
 
.hero-left::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 60px solid rgba(255,255,255,.03);
  border-radius: 50%;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px; height: 280px;
  border: 40px solid rgba(196,113,58,.08);
  border-radius: 50%;
}
 
/* Eyebrow nav */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlide .9s .4s forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--copper);
  flex-shrink: 0;
}
.hero-section-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
}
.hero-nav-link {
  font-size: calc(0.65rem + 1.5px);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(242,221,208,.75);
  font-weight: 400;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: color .25s;
  padding: 2px 0;
}
.hero-nav-link:hover { color: var(--copper-lt); }
.hero-nav-sep {
  color: rgba(242,221,208,.35);
  font-size: calc(0.65rem + 1.5px);
  padding: 0 10px;
  font-weight: 300;
}
 
/* Hero H1 */
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: calc(clamp(3.125rem, 5.15vw, 5.125rem) - 1px);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlide .9s .6s forwards;
}
.hero-h1 em { font-style: italic; color: var(--copper-lt); }
 
/* Hero desc */
.hero-desc {
  font-size: 1.01rem;
  line-height: 1.9;
  color: rgba(247,243,237,.6);
  max-width: 100%;
  margin-bottom: 52px;
  letter-spacing: .02em;
  opacity: 0;
  animation: fadeSlide .9s .8s forwards;
}
 
.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeSlide .9s 1s forwards;
}
.btn-forest {
  background: var(--copper);
  color: var(--white);
  padding: 14px 36px;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: background .3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-forest:hover { background: var(--copper-lt); }
.btn-outline-light {
  border: 1px solid rgba(247,243,237,.3);
  color: rgba(247,243,237,.7);
  padding: 14px 28px;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: border-color .3s, color .3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline-light:hover { border-color: var(--copper-lt); color: var(--copper-lt); }
 
/* ── Hero Right ── */
.hero-right {
  background: var(--ivory-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-right-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,47,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,47,94,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-stats-block {
  position: relative;
  z-index: 2;
  padding: 48px 32px 40px;
  margin-bottom: 0;
}
 
/* Who We Are text inside hero-right */
.hero-who-text {
  font-size: calc(0.74rem + 5px);
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  animation: fadeSlide .9s .7s forwards;
}
 
/* 4-column stat row */
.hero-stat-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  border-top: none;
  margin-top: 0;
  opacity: 0;
  animation: fadeSlide .9s .8s forwards;
}
.hero-mini-stat {
  padding: 28px 20px;
  border-right: 1px solid var(--rule);
}
.hero-mini-stat:last-child { border-right: none; }
.hero-mini-num {
  font-family: 'Playfair Display', serif;
  font-size: calc(1.8rem + 4px);
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-mini-label {
  font-size: calc(0.6rem + 6px);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
 
/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-band {
  background: var(--forest);
  overflow: hidden;
  padding: 18px 0;
  border-top: 3px solid var(--copper);
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  font-size: 0.72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247,243,237,.6);
  font-weight: 400;
  flex-shrink: 0;
}
.marquee-link {
  text-decoration: none;
  cursor: pointer;
  transition: color .25s;
  color: rgba(247,243,237,.6);
}
.marquee-link:hover { color: var(--copper-lt); }
.marquee-link:hover .marquee-dot {
  background: var(--copper-lt);
  transform: scale(1.5);
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
 
/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
.section-std { padding: 60px 24px; }
 
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow-pip {
  width: 8px; height: 8px;
  background: var(--copper);
  flex-shrink: 0;
}
.eyebrow-label {
  font-size: calc(0.62rem + 5px);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
}
 
.h2-serif {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.325rem, 4.125vw, 3.625rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.12;
  margin-bottom: 22px;
}
.h2-serif em { font-style: italic; color: var(--copper); }
 
.body-muted {
  font-size: calc(0.78rem + 5px);
  line-height: 1.9;
  color: var(--ink-muted);
  letter-spacing: .02em;
}
 
/* ══════════════════════════════════
   PRINCIPLES
══════════════════════════════════ */
.principles-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.principles-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--rule);
}
.principle-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
  transition: background .35s;
}
.principle-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.principle-card:hover { background: var(--ivory); }
.principle-card:hover::after { transform: scaleX(1); }
 
.principle-num {
  font-size: calc(0.58rem + 5px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  font-weight: 400;
}
.principle-title {
  font-family: 'DM Serif Display', serif;
  font-size: calc(1.2rem + 5px);
  font-style: italic;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.2;
}
.principle-body {
  font-size: calc(0.74rem + 5px);
  line-height: 1.8;
  color: var(--ink-muted);
}
 
/* ══════════════════════════════════
   ACTIVITIES
══════════════════════════════════ */
.activities-section { background: var(--ivory); }
.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  margin-top: 56px;
  border: 1px solid var(--rule);
}
.activity-card {
  background: var(--ivory);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background .35s;
}
.activity-card:hover { background: var(--cream); }
.activity-card-num {
  position: absolute;
  top: 44px; right: 44px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(26,47,94,.05);
  line-height: 1;
}
.activity-title {
  font-family: 'DM Serif Display', serif;
  font-size: calc(1.3rem + 5px);
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.25;
}
.activity-body {
  font-size: calc(0.75rem + 5px);
  line-height: 1.85;
  color: var(--ink-muted);
}
.activity-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: calc(0.62rem + 5px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  font-weight: 400;
  transition: gap .3s;
  cursor: default;
}
a.activity-link { cursor: pointer; }
a.activity-link:hover { gap: 14px; }
 
/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.testimonials-section .h2-serif { color: var(--ivory); }
.testimonials-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.06);
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(26,47,94,.6);
  padding: 48px 44px;
  border-left: 3px solid transparent;
  transition: border-color .3s, background .3s;
  position: relative;
}
.testimonial-card:hover {
  border-left-color: var(--copper);
  background: rgba(45,96,72,.5);
}
.t-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: .05em;
}
.t-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: calc(1.05rem + 5px);
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 32px;
}
.t-divider {
  width: 32px; height: 1px;
  background: var(--copper);
  margin-bottom: 20px;
}
.t-author {
  font-size: calc(0.68rem + 5px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-lt);
  font-weight: 400;
}
.t-role {
  font-size: calc(0.65rem + 5px);
  color: rgba(247,243,237,.4);
  margin-top: 4px;
  letter-spacing: .06em;
}
 
/* ══════════════════════════════════
   INDEPENDENCE / MEDICAL COMMUNITY
══════════════════════════════════ */
.independence-section {
  background: var(--ivory-dark);
  border-top: 1px solid var(--rule);
}
.independence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.independence-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 24px;
  align-items: start;
}
.independence-item:hover .indep-num { color: var(--forest); }
.indep-num {
  font-family: 'Playfair Display', serif;
  font-size: calc(0.8rem + 5px);
  color: var(--copper);
  padding-top: 4px;
  transition: color .3s;
  font-weight: 700;
}
.indep-title {
  font-family: 'DM Serif Display', serif;
  font-size: calc(1.1rem + 5px);
  color: var(--forest);
  margin-bottom: 10px;
}
.indep-body {
  font-size: calc(0.74rem + 5px);
  line-height: 1.8;
  color: var(--ink-muted);
}
.indep-callout {
  background: var(--forest);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}
.indep-callout::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border: 40px solid rgba(196,113,58,.12);
  border-radius: 50%;
}
.callout-big {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--ivory);
  line-height: .9;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.callout-label {
  font-size: calc(0.62rem + 5px);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper-lt);
  margin-bottom: 32px;
}
.callout-body {
  font-size: calc(0.78rem + 5px);
  line-height: 1.85;
  color: rgba(247,243,237,.6);
  border-top: 1px solid rgba(247,243,237,.1);
  padding-top: 24px;
}
 
/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-section {
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'DM Serif Display', serif;
  font-size: calc(1.05rem + 5px);
  color: var(--forest);
  gap: 20px;
}
.faq-toggle {
  width: 24px; height: 24px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--copper);
  font-family: 'DM Sans', sans-serif;
  transition: background .3s, transform .3s;
}
.faq-item.open .faq-toggle {
  background: var(--copper);
  color: var(--white);
  transform: rotate(45deg);
  border-color: var(--copper);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-ans { max-height: 220px; }
.faq-ans-inner {
  padding: 0 0 22px;
  font-size: calc(0.76rem + 5px);
  line-height: 1.85;
  color: var(--ink-muted);
}
 
/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: var(--copper);
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
.cta-h2 em { font-style: italic; }
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.cta-body {
  font-size: calc(0.78rem + 5px);
  line-height: 1.85;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
}
 
/* ══════════════════════════════════
   DECO RULE
══════════════════════════════════ */
.deco-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  height: 1px;
  background: var(--rule);
}
.deco-diamond {
  width: 7px; height: 7px;
  background: var(--copper);
  transform: rotate(45deg);
}
 
/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
 
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
 
/* ══════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 16px; cursor: auto; }
  .cursor, .cursor-ring { display: none; }
 
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px 56px; min-height: 100svh; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-desc { font-size: 0.97rem; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-forest, .btn-outline-light {
    text-align: center;
    padding: 14px 24px;
    display: block;
    width: 100%;
  }
  .hero-section-nav { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-nav-sep { display: none; }
 
  .hero-right { min-height: 280px; justify-content: center; }
  .hero-stats-block { padding: 28px 16px; }
  .hero-stat-row-4 { grid-template-columns: repeat(2,1fr); }
  .hero-mini-stat { padding: 16px 10px; }
  .hero-mini-num { font-size: 1.4rem; }
  .hero-mini-label { font-size: .6rem; }
 
  .section-std { padding: 60px 20px; }
 
  .principles-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle-card { padding: 28px 20px; }
 
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card { padding: 32px 24px; }
  .activity-card-num { font-size: 3rem; top: 24px; right: 24px; }
 
  .testimonials-carousel { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }
 
  .independence-layout { grid-template-columns: 1fr; gap: 32px; }
  .indep-callout { padding: 36px 24px; }
  .callout-big { font-size: 3.8rem; }
 
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .faq-q { font-size: 1rem; padding: 18px 0; }
 
  .cta-section { grid-template-columns: 1fr; gap: 28px; padding: 60px 20px; }
  .cta-h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
 
  .deco-rule { padding: 0 20px; }
}
 
/* ══════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════ */
@media (max-width: 480px) {
  .hero-left { padding: 40px 16px 48px; }
  .section-std { padding: 48px 16px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card,
  .activity-card,
  .testimonial-card,
  .indep-callout { padding: 24px 16px; }
  .cta-section { padding: 48px 16px; }
  .hero-mini-num { font-size: 1.2rem; }
  .hero-mini-label { font-size: .55rem; }
  .hero-section-nav { gap: 5px; }
  .hero-nav-link { font-size: .6rem; }
}/* End custom CSS */