@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: #f5f5f0; line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: #1a8a4a; color: #fff; }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #1a8a4a; border-radius: 10px; }

:root {
  --green: #1a8a4a;
  --green-dark: #0d6b37;
  --green-light: #2db86a;
  --green-glow: rgba(26, 138, 74, 0.15);
  --black: #0a0a0a;
  --black-light: #111111;
  --charcoal: #1a1a1a;
  --charcoal-light: #252525;
  --gray-dark: #333;
  --gray: #555;
  --gray-light: #888;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --cream: #eaeae2;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --border: #ddd;
  --max-w: 1200px;
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideRight { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes scaleReveal { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }

.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-in { animation: fadeIn 0.5s ease forwards; }
.slide-right { animation: slideRight 0.7s ease forwards; }
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--green); transition: all 0.35s;
}
.navbar.scrolled { background: rgba(10,10,10,0.98); }
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; transition: height 0.3s;
}
.navbar.scrolled .navbar-inner { height: 60px; }

.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-logo-icon {
  width: 44px; height: 44px; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text h2 { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.1; }
.nav-logo-text span { font-size: 10px; color: var(--green-light); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.6); padding: 8px 16px;
  border-bottom: 2px solid transparent; transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--green); }

.mobile-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 26px; cursor: pointer; width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.mobile-menu { display: none; padding: 8px 24px 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: block; animation: fadeIn 0.2s; }
.mobile-menu a {
  display: block; padding: 12px 16px; font-size: 15px;
  color: rgba(255,255,255,0.6); border-radius: 4px;
}
.mobile-menu a:hover, .mobile-menu a.active { color: #fff; background: var(--green-glow); }

/* ═══ PAGE BANNER ═══ */
.page-banner {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--charcoal-light) 100%);
  padding: 110px 24px 56px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--green-dark));
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(26,138,74,0.1), transparent 60%);
}
.page-banner h1 { font-size: clamp(2rem,5vw,3rem); color: #fff; font-weight: 600; position: relative; z-index: 1; }
.page-banner .breadcrumb { margin-top: 14px; font-size: 14px; position: relative; z-index: 1; }
.page-banner .breadcrumb a { color: var(--green-light); }
.page-banner .breadcrumb a:hover { color: var(--green); }
.page-banner .breadcrumb span { color: rgba(255,255,255,0.6); }

/* ═══ SECTIONS ═══ */
.section { padding: 80px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%); color: #fff; }

.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading.left { text-align: left; }
.section-heading .sub {
  text-transform: uppercase; letter-spacing: 3px; font-size: 11px;
  font-weight: 700; color: var(--green); display: block; margin-bottom: 10px;
}
.bg-dark .section-heading .sub { color: var(--green-light); }
.section-heading h2 { font-size: clamp(1.7rem,4vw,2.5rem); color: var(--charcoal); font-weight: 600; line-height: 1.25; }
.bg-dark .section-heading h2 { color: #fff; }
.section-heading .line {
  width: 60px; height: 3px; background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  margin: 16px auto 0; border-radius: 2px;
}
.section-heading.left .line { margin: 16px 0 0; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-block; padding: 14px 34px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; border-radius: 4px; cursor: pointer;
  letter-spacing: 1.2px; text-transform: uppercase; transition: all 0.3s;
  border: none; background: var(--green); color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,138,74,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--green); color: var(--green-light); background: rgba(26,138,74,0.1); }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 94vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--black) 0%, #090e0c 40%, var(--charcoal) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.hero-circle-1 {
  position: absolute; right: -10%; top: 5%; width: 600px; height: 600px;
  border-radius: 50%; border: 1px solid rgba(26,138,74,0.08);
}
.hero-circle-2 {
  position: absolute; left: -5%; bottom: -10%; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(26,138,74,0.06), transparent);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px; position: relative; z-index: 1;
}
.hero-content { flex: 1 1 500px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-glow); border-radius: 30px; padding: 7px 18px;
  margin-bottom: 22px; border: 1px solid rgba(26,138,74,0.25);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-light); }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--green-light); letter-spacing: 2px; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.4rem,5.5vw,3.6rem); color: #fff; line-height: 1.15; font-weight: 600; margin-bottom: 22px; }
.hero h1 em, .hero h1 span { color: var(--green-light); font-style: normal; }
.hero-desc { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.5); max-width: 500px; margin-bottom: 14px; }
.hero-list { display: flex; flex-wrap: wrap; gap: 6px 20px; margin-bottom: 30px; }
.hero-list li { font-size: 13px; color: rgba(255,255,255,0.4); padding-left: 16px; position: relative; }
.hero-list li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image { flex: 1 1 380px; display: flex; justify-content: center; }
.hero-image-wrap { position: relative; }
.hero-image-wrap::before {
  content: ''; position: absolute; inset: -12px; border-radius: 16px;
  border: 2px solid rgba(26,138,74,0.15); transform: rotate(3deg);
}
.hero-image-wrap img {
  max-height: 480px; border-radius: 12px; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

/* ═══ ABOUT SECTION ═══ */
.about-row { display: flex; flex-wrap: wrap; gap: 48px; align-items: center; }
.about-img-col { flex: 1 1 340px; position: relative; }
.about-img-col::before {
  content: ''; position: absolute; top: -8px; left: -8px;
  width: 70%; height: 70%; border: 2px solid var(--green); border-radius: 10px; opacity: 0.2;
}
.about-img-col img { border-radius: 10px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); position: relative; width: 100%; }
.about-text-col { flex: 1 1 420px; }
.about-text-col p { font-size: 15px; line-height: 1.9; color: var(--text-mid); margin-bottom: 16px; }

.info-cards { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.info-card {
  flex: 1 1 200px; padding: 14px 16px; background: var(--white);
  border-radius: 6px; border-left: 3px solid var(--green);
}
.info-card h5 { font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; font-family: 'DM Sans', sans-serif; }
.info-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; white-space: pre-line; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 28px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.15), transparent, rgba(0,0,0,0.15)); }
.cta-banner span { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; font-weight: 500; position: relative; }
.cta-banner a {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #fff; font-weight: 700;
  border-bottom: 2px solid rgba(255,255,255,0.4); position: relative; margin-left: 8px;
}
.cta-banner a:hover { border-bottom-color: #fff; }

/* ═══ PRACTICE CARDS ═══ */
.practice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.practice-card {
  border-radius: 8px; overflow: hidden; background: var(--white);
  border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(0,0,0,0.04); transition: all 0.4s; cursor: pointer;
}
.practice-card:hover { border-color: var(--green); box-shadow: 0 12px 36px rgba(26,138,74,0.12); transform: translateY(-6px); }
.practice-card .card-img { height: 180px; overflow: hidden; position: relative; }
.practice-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.practice-card:hover .card-img img { transform: scale(1.08); }
.practice-card .card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.5), transparent); }
.practice-card .card-body { padding: 20px; }
.practice-card h3 { font-size: 19px; color: var(--charcoal); font-weight: 600; margin-bottom: 8px; }
.practice-card p { font-size: 13px; line-height: 1.75; color: var(--text-light); }

/* ═══ SERVICES ═══ */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  display: flex; gap: 18px; padding: 22px; background: var(--white); border-radius: 8px;
  border: 1px solid var(--border); transition: all 0.4s; cursor: pointer; align-items: flex-start;
}
.service-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(26,138,74,0.1); transform: translateY(-3px); }
.service-card .svc-icon { width: 68px; height: 68px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--off-white); }
.service-card .svc-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 19px; color: var(--charcoal); font-weight: 600; margin-bottom: 8px; }
.service-card p { font-size: 13px; line-height: 1.75; color: var(--text-light); }

/* ═══ VALUES ═══ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.value-card {
  border-radius: 8px; overflow: hidden; background: var(--white);
  border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.04); transition: all 0.4s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.value-card img { width: 100%; height: 200px; object-fit: cover; }
.value-card .card-body { padding: 24px; }
.value-card h3 { font-size: 20px; color: var(--charcoal); font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; line-height: 1.75; color: var(--text-mid); }

/* ═══ TIMELINE ═══ */
.timeline-row { display: flex; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.timeline-img { flex: 1 1 240px; }
.timeline-img img { border-radius: 8px; box-shadow: 0 12px 36px rgba(0,0,0,0.3); width: 100%; }
.timeline-items { flex: 2 1 400px; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 28px; }
.timeline-year {
  min-width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; color: #fff; font-size: 15px;
  box-shadow: 0 4px 16px rgba(26,138,74,0.4); flex-shrink: 0;
}
.timeline-item h4 { font-size: 18px; color: #fff; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }

/* ═══ EXPERIENCE ═══ */
.exp-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 6px;
}
.exp-item .role { font-weight: 600; font-size: 15px; color: var(--charcoal); }
.exp-item .org { font-size: 14px; color: var(--text-light); margin-left: 8px; }
.exp-item .period { font-size: 13px; color: var(--green); font-weight: 600; }

/* ═══ FAQ ═══ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
}
.faq-item.open { border-color: var(--green); box-shadow: 0 6px 20px rgba(26,138,74,0.08); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--charcoal); display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item.open .faq-q { color: var(--green); }
.faq-toggle {
  width: 30px; height: 30px; border-radius: 50%; background: var(--off-white);
  color: var(--text-light); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: all 0.3s;
}
.faq-item.open .faq-toggle { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 22px 18px; font-size: 14px; line-height: 1.85; color: var(--text-mid); }

/* ═══ CONTACT ═══ */
.contact-row { display: flex; flex-wrap: wrap; gap: 32px; }
.contact-info { flex: 1 1 400px; display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  display: flex; gap: 16px; padding: 20px; background: var(--white);
  border-radius: 8px; border: 1px solid var(--border); align-items: flex-start;
}
.contact-card .icon-box {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(26,138,74,0.2);
}
.contact-card h5 { font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; font-family: 'DM Sans', sans-serif; }
.contact-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; white-space: pre-line; }
.map-btn {
  display: block; padding: 18px; background: var(--black); border-radius: 8px;
  text-align: center; color: #fff; font-weight: 600; font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
}
.map-btn:hover { background: var(--green); }

.contact-form-wrap {
  flex: 1 1 400px; background: var(--white); border-radius: 10px;
  padding: 34px 30px; border: 1px solid var(--border); box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}
.contact-form-wrap h3 { font-size: 24px; color: var(--charcoal); margin-bottom: 22px; text-align: center; }

/* ═══ FORMS ═══ */
.form-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.form-group { flex: 1; min-width: 180px; margin-bottom: 14px; }
.form-group label {
  font-size: 12px; font-weight: 600; color: var(--text-light);
  display: block; margin-bottom: 5px; letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--border); border-radius: 4px; background: var(--white);
  color: var(--text); transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,138,74,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { text-align: center; padding: 40px; background: var(--green-glow); border-radius: 8px; }
.form-success .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-size: 24px; color: #fff;
}

/* ═══ FOOTER ═══ */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 56px 24px 28px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; }
.footer-brand { flex: 1 1 320px; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .logo-row .icon {
  width: 38px; height: 38px; border-radius: 8px; overflow: hidden;
  background: var(--green); display: flex; align-items: center; justify-content: center;
}
.footer-brand .logo-row .icon img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand .logo-row span { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.footer-brand .info { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.footer-col { flex: 0 1 180px; }
.footer-col h4 { color: var(--green-light); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.footer-col a, .footer-col div { display: block; padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom {
  max-width: var(--max-w); margin: 36px auto 0; border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.25);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-inner, .about-row, .contact-row, .timeline-row, .footer-inner { flex-direction: column; }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-list { justify-content: center; }
  .hero-image-wrap img { max-height: 360px; }
  .section-heading.left { text-align: center; }
  .section-heading.left .line { margin: 16px auto 0; }
}

/* ═══ GLOBAL FONT BOOST ═══ */
body { font-size: 16px; font-weight: 500; }
h1 { font-size: clamp(2.6rem, 6vw, 4rem) !important; }
h2 { font-size: clamp(2rem, 4.5vw, 2.8rem) !important; }
h3 { font-size: 22px !important; font-weight: 700 !important; }
h4 { font-size: 20px !important; font-weight: 700 !important; }
p, li, div, span, a, label { font-size: 15.5px; }
.hero-desc { font-size: 18px !important; }
.hero-list li { font-size: 14.5px !important; }
.hero-badge span { font-size: 13px !important; font-weight: 700 !important; }
.practice-card p, .service-card p, .value-card p, .faq-a p { font-size: 15px !important; color: var(--text-mid) !important; font-weight: 450; }
.practice-card h3, .service-card h3, .value-card h3 { font-size: 23px !important; font-weight: 700 !important; color: var(--black) !important; }
.about-text-col p { font-size: 16px !important; font-weight: 450; }
.info-card p { font-size: 14px !important; font-weight: 500; }
.info-card h5 { font-size: 13px !important; font-weight: 800 !important; }
.contact-card p { font-size: 15px !important; font-weight: 500; }
.contact-card h5 { font-size: 13px !important; font-weight: 800 !important; }
.faq-q { font-size: 17px !important; font-weight: 700 !important; }
.faq-a p { font-size: 15.5px !important; font-weight: 450; }
.exp-item .role { font-size: 16px !important; font-weight: 700 !important; }
.exp-item .org { font-size: 15px !important; }
.exp-item .period { font-size: 14px !important; font-weight: 700 !important; }
.timeline-item h4 { font-size: 20px !important; }
.timeline-item p { font-size: 15px !important; }
.nav-links a { font-size: 15px !important; font-weight: 500 !important; }
.nav-links a.active { font-weight: 700 !important; }
.btn { font-size: 15px !important; font-weight: 700 !important; }
.cta-banner span { font-size: 22px !important; }
.cta-banner a { font-size: 24px !important; }
.section-heading .sub { font-size: 12px !important; font-weight: 800 !important; }
.footer-brand p { font-size: 15px !important; }
.footer-col a, .footer-col div { font-size: 15px !important; }
