@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --white: #FFFFFF;
  --dark-blue: #1C274C;
  --light-pink: #F8E2E5;
  --deep-red: #8B0000;
  --light-gray: #CCCCCC;
  --text-gray: #4a4a4a;
  --shadow: 0 4px 20px rgba(28, 39, 76, 0.1);
  --shadow-hover: 0 8px 30px rgba(28, 39, 76, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-blue);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

/* ===== HEADER ===== */
.header-top {
  background: var(--dark-blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-top-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.header-top-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.header-top-left a:hover {
  opacity: 1;
}

.header-top-right {
  display: flex;
  gap: 16px;
}

.header-top-right a {
  opacity: 0.9;
}

.header-top-right a:hover {
  opacity: 1;
}

.main-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  letter-spacing: -0.5px;
}

.logo:hover {
  color: var(--dark-blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
}

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

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

.nav-links a:hover {
  color: var(--dark-blue);
}

.btn-primary {
  background: var(--dark-blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: #2a3a6e;
}

.btn-secondary {
  background: var(--light-pink);
  color: var(--dark-blue);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f5d3d8;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--dark-blue);
  transition: all 0.3s ease;
}

.mobile-phone-btn {
  display: none;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.mobile-phone-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 15px;
  min-width: 180px;
  z-index: 100;
}

.mobile-phone-dropdown.active {
  display: block;
}

.mobile-phone-dropdown a {
  display: block;
  padding: 10px 15px;
  color: var(--dark-blue);
  font-weight: 500;
}

.mobile-phone-dropdown a:hover {
  background: var(--light-pink);
  border-radius: 4px;
}

/* Mobile Overlay Menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  transition: right 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  right: 0;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  padding: 30px 25px;
  overflow-y: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark-blue);
}

.mobile-nav-links {
  margin-top: 60px;
}

.mobile-nav-links a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-blue);
}

.mobile-nav-links a:hover {
  color: var(--deep-red);
}

.mobile-nav-cta {
  margin-top: 30px;
  text-align: center;
}

.mobile-nav-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.mobile-nav-contact p {
  margin: 10px 0;
  font-size: 14px;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-text-box {
  background: var(--light-pink);
  padding: 40px;
  border-radius: 12px;
  animation: fadeInUp 0.8s ease;
}

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

.hero-text-box h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--dark-blue);
}

.hero-text-box p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.hero .btn-primary {
  padding: 14px 32px;
  font-size: 16px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 16px;
}

/* Services Section */
.services-section {
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.service-card h3 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light-pink);
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-card blockquote {
  font-size: 20px;
  font-style: italic;
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-gray);
}

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

.testimonial-nav button {
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: #2a3a6e;
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--dark-blue);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  background: var(--dark-blue);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn-primary:hover {
  background: var(--light-pink);
}

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

.cta-section .btn-primary {
  animation: pulse 2s infinite;
}

/* Contact Info Section */
.contact-info-section {
  background: #f9f9f9;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.contact-info-item {
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-item h3 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.contact-info-item p {
  color: var(--text-gray);
  font-size: 15px;
}

.contact-info-item a {
  color: var(--dark-blue);
  font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 39, 76, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

/* Philosophy Section */
.philosophy-section {
  background: var(--white);
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content h2 {
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 24px;
}

.philosophy-content > p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.philosophy-value {
  padding: 25px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 4px solid var(--light-pink);
}

.philosophy-value h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.philosophy-value p {
  font-size: 15px;
  color: var(--text-gray);
}

/* Meet Dr. Kim Section */
.dr-kim-section {
  background: #f9f9f9;
}

.dr-kim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dr-kim-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dr-kim-image img {
  width: 100%;
  height: auto;
  display: block;
}

.dr-kim-content h2 {
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.dr-kim-content p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* Clinic Technology Section */
.clinic-section {
  background: var(--white);
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.clinic-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.clinic-image img {
  width: 100%;
  height: auto;
  display: block;
}

.clinic-content h2 {
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.clinic-content p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  background: var(--white);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-item {
  padding: 35px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-item h3 {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-item h3 span {
  font-size: 24px;
}

.service-item p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
}

.contact-form-container h2 {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 3px rgba(28, 39, 76, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form-container .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

/* Location Section */
.location-section {
  background: #f9f9f9;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

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

.location-details h2 {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 25px;
}

.location-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.location-info-icon {
  width: 45px;
  height: 45px;
  background: var(--light-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.location-info-text h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.location-info-text p {
  color: var(--text-gray);
  font-size: 15px;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
  color: var(--deep-red);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-content {
  padding-bottom: 25px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-about .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer-about p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  font-size: 14px;
  opacity: 0.8;
}

.footer-column ul a:hover {
  opacity: 1;
  color: var(--light-pink);
}

.footer-hours p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--light-pink);
  color: var(--dark-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}

.footer-bottom a {
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: var(--light-pink);
}

/* Mobile Footer Accordion */
.footer-accordion {
  display: none;
}

/* ===== ANIMATIONS ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn,
  .mobile-phone-btn {
    display: flex;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-text-box {
    padding: 30px;
  }
  
  .hero-text-box h1 {
    font-size: 32px;
  }
  
  .hero-text-box p {
    font-size: 16px;
  }
  
  .about-grid,
  .dr-kim-grid,
  .clinic-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image,
  .dr-kim-image,
  .clinic-image {
    order: -1;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-list-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .page-hero-content h1 {
    font-size: 36px;
  }
  
  .page-hero {
    min-height: 300px;
  }
  
  .footer-grid {
    display: none;
  }
  
  .footer-accordion {
    display: block;
  }
  
  .footer-accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .footer-accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .footer-accordion-content-inner {
    padding-bottom: 20px;
  }
  
  .footer-accordion-content ul li {
    margin-bottom: 12px;
  }
  
  .footer-accordion-content ul a {
    font-size: 14px;
    opacity: 0.8;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom a {
    margin: 0 10px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-card blockquote {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
