@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --primary-dark-blue: #0F3D5D;
  --accent-gold: #D4A800;
  --white: #FFFFFF;
  --light-gray-bg: #F2F7FA;
  --subtle-gray: #C0C0C0;
  --secondary-blue: #336699;
  --text-dark: #333333;
  --text-muted: #666666;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lifted: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark-blue);
}

h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.bg-light { background-color: var(--light-gray-bg); }
.bg-dark { background-color: var(--primary-dark-blue); }
.bg-white { background-color: var(--white); }

.text-white { color: var(--white); }
.text-gold { color: var(--accent-gold); }
.text-blue { color: var(--primary-dark-blue); }

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: var(--primary-dark-blue);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.login-link:hover {
  color: var(--accent-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #c49900;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 0, 0.4);
}

.btn-secondary {
  background-color: var(--primary-dark-blue);
  color: var(--white);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-dark-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-base);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--primary-dark-blue);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover {
  color: var(--accent-gold);
}

.mobile-cta {
  margin-top: 30px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.hero-half {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-physician {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--secondary-blue) 100%);
}

.hero-facility {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-dark-blue) 100%);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  max-width: 400px;
  padding: 30px;
}

.hero-center-content {
  background-color: rgba(15, 61, 93, 0.95);
  padding: 40px 30px;
  border-radius: 8px;
  border: 2px solid var(--accent-gold);
}

.hero-center h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.hero-center .highlight {
  color: var(--accent-gold);
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Value Proposition Cards */
.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lifted);
}

.value-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 168, 0, 0.1);
  border-radius: 50%;
}

.value-card-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--accent-gold);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Audience Section */
.audience-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.audience-image {
  position: relative;
  overflow: hidden;
}

.audience-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.audience-content {
  padding: 50px 30px;
}

.audience-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.audience-content > p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.benefit-list {
  margin-bottom: 30px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.benefit-list li svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.process-step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.process-step-content h3 {
  margin-bottom: 10px;
}

.process-step-content p {
  color: var(--text-muted);
  margin: 0;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-gold);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-dark-blue);
}

.testimonial-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--subtle-gray);
  cursor: pointer;
  transition: var(--transition-base);
}

.testimonial-dot.active {
  background-color: var(--accent-gold);
}

/* Stats Section */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, #0a2d45 100%);
  padding: 80px 0;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  font-weight: 900;
}

.stat-item p {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  background-color: var(--primary-dark-blue);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: var(--primary-dark-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--subtle-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

.footer-links h4,
.footer-expertise h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul li,
.footer-expertise ul li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-expertise a {
  color: var(--subtle-gray);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-expertise a:hover {
  color: var(--accent-gold);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--subtle-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  color: var(--subtle-gray);
  font-size: 0.9rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-dark-blue);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-gold);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: var(--transition-base);
}

.faq-item.active .faq-question::after {
  content: '-';
}

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

.faq-answer-content {
  padding-bottom: 20px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.team-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lifted);
}

.team-card-image {
  height: 250px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-content {
  padding: 25px;
}

.team-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-card-content .title {
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Job Listings */
.job-listing {
  background-color: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  transition: var(--transition-base);
}

.job-listing:hover {
  box-shadow: var(--shadow-medium);
}

.job-listing h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.job-listing .job-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.job-listing .job-meta span {
  margin-right: 20px;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-method {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition-base);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lifted);
}

.contact-method-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: rgba(212, 168, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-gold);
}

.contact-method h4 {
  margin-bottom: 10px;
}

.contact-method a {
  color: var(--primary-dark-blue);
  font-weight: 500;
}

.contact-method a:hover {
  color: var(--accent-gold);
}

/* Map Section */
.map-container {
  width: 100%;
  height: 400px;
  background-color: var(--light-gray-bg);
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Specialty Grid */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.specialty-item {
  background-color: var(--white);
  padding: 15px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-dark-blue);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.specialty-item:hover {
  background-color: var(--primary-dark-blue);
  color: var(--white);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--accent-gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease forwards;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  .section { padding: 80px 0; }
  
  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .audience-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .audience-image img {
    height: 500px;
  }
  
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .specialty-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-center h2 {
    font-size: 1.8rem;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.8rem; }
  
  .section { padding: 100px 0; }
  
  .value-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .specialty-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .hero-split {
    position: relative;
  }
  
  .hero-center {
    width: 300px;
  }
  
  .audience-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .audience-section.reverse .audience-content {
    order: -1;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

/* Mobile Navigation Override */
@media (max-width: 1023px) {
  .nav-links,
  .header-actions .login-link {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-menu,
  .mobile-menu-overlay {
    display: block;
  }
}

/* Pulse Animation for CTA */
.pulse-btn {
  animation: pulse 2s infinite;
}

.pulse-btn:hover {
  animation: none;
}
