/* ===========================================
   Main Stylesheet for Amanah Medical Centre Website
   - Cleaned and Organized for Readability
   - Sections: Loading, General, Navbar, Sidebar, Chat, Footer, Content, Media Queries
   =========================================== */

/* Call Center Sticky Button */
.call-center-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.call-center-btn {
    width: auto;
    height: 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    animation: pulse 2s infinite;
}

.call-center-btn i {
    margin-right: 8px;
    font-size: 20px;
}

.call-center-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.call-center-btn.active {
    background: linear-gradient(135deg, #128c7e, #075e54);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }
}

.call-center-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    min-width: 200px;
    overflow: hidden;
}

.call-center-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-center-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.call-center-option:last-child {
    border-bottom: none;
}

.call-center-option:hover {
    background-color: #f8f9fa;
    color: #333;
}

.call-center-option i {
    margin-right: 12px;
    font-size: 18px;
}

.call-center-option span {
    font-weight: 500;
    font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .call-center-sticky {
        bottom: 15px;
        right: 15px;
    }

    .call-center-btn {
        width: auto;
        height: 50px;
        font-size: 16px;
        padding: 0 15px;
    }

    .call-center-btn i {
        margin-right: 6px;
        font-size: 18px;
    }

    .call-center-btn span {
        display: none;
    }

    .call-center-menu {
        min-width: 180px;
        bottom: 70px;
    }

    .call-center-option {
        padding: 10px 14px;
    }

    .call-center-option i {
        font-size: 16px;
        margin-right: 10px;
    }

    .call-center-option span {
        font-size: 13px;
    }
}

/* === LOADING SCREEN === */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f5e9, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loading-logo {
  width: 100px;
  height: 100px;
  background: url('/images/logo_amc.png') no-repeat center center / contain;
  animation: pulse 1.5s ease-in-out infinite;
}

#loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: #4caf50;
  animation: fadeInLoading 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fadeInLoading {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

body.loaded #loading-screen {
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* === GENERAL STYLES === */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* === NAVBAR === */
/* Navbar 1 (Top Section) */
.navbar-1 {
  border-bottom: 2px solid #ddd;
  padding: 15px 0;
}

.navbar-1 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-1 .navbar-brand img {
  height: 50px;
}

.navbar-1 .contact-info {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  gap: 20px;
}

.navbar-1 .contact-info a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-1 .contact-info a:hover {
  color: #28a745;
}

.navbar-1 .social-media a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.navbar-1 .social-media a:hover {
  color: #28a745;
}

.btn-contact {
  background-color: #ffffff;
  border: 2px solid #ddd;
  padding: 5px 15px;
  border-radius: 25px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #ff9800;
  border-color: #ff9800;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  color: #007b3f;
  text-transform: capitalize;
  font-size: 14px;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background-color: #ff7f00;
  color: #ffffff;
}

/* Navbar 2 (Main Navigation) */
.navbar-2 {
  padding: 0;
  border-bottom: 3px solid #009b4d;
  background-color: #fff;
}

.navbar-2 .dropdown-menu {
  position: absolute;
  top: 100% !important;
  left: 0;
  margin-top: 0;
  border-radius: 0;
  display: none;
}

.navbar-2 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.navbar-2 .nav-item {
  display: flex;
  align-items: center;
}

.navbar-2 .nav-link {
  color: #007b3f;
  padding: 15px 20px;
  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}

.navbar-2 .nav-link:hover {
  color: #ff7f00;
}

.navbar-2 .nav-item.promo-special {
  background-color: #ff7f00;
  border-radius: 0;
}

.navbar-2 .nav-item.promo-special .nav-link {
  color: #fff !important;
  font-weight: bold;
  padding: 15px 25px;
}

.navbar-2 .nav-item.promo-special:hover {
  background-color: #e66a00;
}

/* === SIDEBAR (Mobile Menu) === */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  float: right;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.sidebar-menu li {
  margin: 10px 0;
}

.sidebar-menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 15px;
  display: block;
  border-radius: 5px;
  transition: background 0.3s;
}

.sidebar-menu a:hover {
  background-color: #28a745;
  color: #fff;
}

.sidebar-dropdown .dropdown-content {
  display: none;
  list-style: none;
  padding-left: 15px;
}

.sidebar-dropdown.active .dropdown-content {
  display: block;
}

.sidebar-dropdown a.dropdown-toggle::after {
  content: '▼';
  float: right;
  font-size: 12px;
  transition: transform 0.3s;
}

.sidebar-dropdown.active a.dropdown-toggle::after {
  transform: rotate(180deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 900;
}

.overlay.active {
  display: block;
}

.menu-toggle {
  background: #28a745;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1100;
}

/* === STICKY CHAT === */
.sticky-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInSlide 1s forwards;
}

.sticky-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-btn {
  background-color: #25D366;
}

.daftar-btn {
  background-color: #FF5733;
}

.sticky-chat a:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === FOOTER === */
.footer {
  background: linear-gradient(to top, #0a3d2a, #28a745);
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
}

.footer h5 {
  font-size: 17px;
}

.footer p, .footer a, .footer li {
  color: #e9ecef;
}

.footer a {
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact i {
  font-size: 18px;
  margin-top: 3px;
  color: #fff;
}

.footer-contact span {
  display: block;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: #fff;
  color: #198754;
  transform: translateY(-3px);
}

.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === PAGE CONTENT === */
/* Profile Section */
.profile-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2a7f62;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 50px;
  height: 4px;
  background-color: #ff8800;
  display: block;
  margin-top: 8px;
  border-radius: 4px;
}

.profile-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  text-align: justify;
}

.custom-btn {
  background-color: #2a7f62;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.custom-btn:hover {
  background-color: #ff8800;
  transform: scale(1.05);
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Carousel */
#headerCarousel {
  position: relative;
}

.carousel-image {
  height: 78vh;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.8s ease-in-out;
}

.carousel-item:hover .carousel-image {
  transform: scale(1.05);
}

.custom-caption {
  padding: 20px 30px;
  border-radius: 10px;
  animation: fadeInCarousel 1.5s ease-in-out;
}

.custom-caption h1 {
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}

.custom-caption h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.custom-caption p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-top: 10px;
}

.carousel-indicators button {
  background-color: #28a745;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  border-radius: 50%;
  padding: 15px;
}

@keyframes fadeInCarousel {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alert and Card */
.alert-warning {
  background-color: #ff6600;
  color: white;
}

.card {
  border: 2px solid #28a745;
}

.card-body {
  background-color: #f8f9fa;
}

.card-title {
  color: #28a745;
}

/* Section Backgrounds */
.section {
  padding: 50px 0;
}

#profil { background: #f5f5f5; }
#visi-misi { background: #ffffff; }
#pelayanan { background: #f9f9f9; }
#gallery { background: #ffffff; }
#announcement { background: #fffcf3; }

section h2 {
  font-size: 2.5rem;
  color: #28a745;
  font-weight: 600;
}

section p, section ul {
  font-size: 1.1rem;
  color: #333;
}

/* Gallery */
.gallery-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff5c5c;
}

#caption {
  text-align: center;
  color: white;
  padding: 10px 20px;
  font-size: 18px;
}

/* Announcement */
.announcement-section {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.announcement-title {
  font-size: 36px;
  font-weight: bold;
  color: #00796b;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.announcement-card {
  background: #ffffff;
  border-left: 5px solid #ffb300;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.announcement-text {
  font-size: 20px;
  color: #37474f;
  line-height: 1.6;
  font-weight: 500;
}

.btn-animated {
  background-color: #00796b;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 121, 107, 0.5);
}

.btn-animated:hover {
  background-color: #004d40;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 77, 64, 0.7);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats */
.stats-section {
  background: #009b4d;
  padding: 50px 0;
}

.stats-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.stats-box:hover {
  transform: scale(1.05);
}

.stats-box i {
  font-size: 50px;
  color: #28a745;
}

.stats-box h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.stats-box p {
  font-size: 18px;
  color: #666;
}

/* Partner Logo */
.partner-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

/* Layanan Wrapper */
.layanan-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #017139;
  border-radius: 20px;
  overflow: hidden;
  margin: 30px auto;
  max-width: 1200px;
}

.layanan-box {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 30px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.layanan-box:not(:last-child) {
  border-right: 3px solid #ffffffff;
}

.layanan-box:hover {
  background-color: #ff7f00;
}

.layanan-box h5 {
  margin-top: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.icon-wrap {
  background-color: #ffffffff;
  color: #ff7f00;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Promo RS */
.promo-rs {
  background: #009b4d;
  padding: 80px 20px;
  text-align: center;
}

.promo-heading {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.promo-subtitle {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
}

.promo-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.promo-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  max-width: 350px;
}

.promo-item img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.promo-btn-wrapper {
  margin-top: 50px;
}

.promo-btn {
  display: inline-block;
  background: #007b3f;
  color: #fff;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.promo-btn:hover {
  background: #005f30;
}

/* Artikel Card */
.artikel-card .artikel-img {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.artikel-card:hover .artikel-img {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.artikel-card .card-title {
  transition: color 0.3s ease;
  color: #212529;
}

.artikel-card:hover .card-title {
  color: #009b4d;
}

/* App Download */
.app-download {
  background: linear-gradient(to bottom right, #f5fafd, #e6f7f1);
  border-radius: 12px;
}

.phone-mockup {
  max-width: 300px;
  transition: transform 0.4s ease;
}

.phone-mockup:hover {
  transform: scale(1.05);
}

/* JIH TV */
.jih-tv {
  background: #f9f9fb;
}

.video-card {
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  opacity: 0.8;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-modal.show {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-modal video {
  width: 100%;
  height: auto;
}

.video-modal .close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Dots Decoration */
.dots-decoration {
  position: absolute;
  right: 70%;
  top: 20%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#000000 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

/* CMS Sidebar Fixed and Scrolling */
.main-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: hidden;
}

.main-sidebar .sidebar {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 20px;
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  .carousel-image {
    height: 60vh;
  }
  .custom-caption h1 {
    font-size: 2rem;
  }
  .custom-caption h2 {
    font-size: 1.5rem;
  }
  .custom-caption p {
    font-size: 1rem;
  }
  .sticky-chat {
    right: 10px;
    bottom: 10px;
  }
  .sticky-chat a {
    font-size: 14px;
    padding: 10px 12px;
  }
  .header-content {
    flex-direction: column;
  }
  .header-text, .header-image {
    flex: none;
    width: 100%;
    height: 50vh;
  }
  .header-text {
    padding: 20px;
    text-align: center;
  }
  .header-text h1 {
    font-size: 2.5rem;
  }
  .header-text h2 {
    font-size: 1.5rem;
  }
  .header-text p {
    font-size: 1rem;
  }
  .header-text::after {
    height: 30px;
  }
  .header-image::before {
    height: 30px;
  }
}

@media (max-width: 576px) {
  .header { height: 300px; }
  .header h1 { font-size: 1.8rem; }
  .header img { width: 100px; }
  .navbar-brand { font-size: 1.2rem; }
  section h2 { font-size: 1.5rem; }
  .card { margin-bottom: 20px; }
  footer { padding: 20px 0; }
}

@media (max-width: 576px) {
  .header { padding: 15px; }
  .header h1 { font-size: 1.5rem; }
  .navbar-brand { font-size: 1rem; }
  section h2 { font-size: 1.2rem; }
  .card-title { font-size: 1rem; }
  footer { font-size: 0.9rem; }
}


