/* === General Font Cleanup === */
body {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

/* === Card Styling === */
.card {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

/* === Section Titles === */
.section-title {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00bcd4;
}

/* === Iframe Enhancements === */
iframe {
  border-radius: 12px;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}
/* === Optional: Background Brightness === */
/* Uncomment this if you want a light gray background instead of default */
 /*
body {
  background-color: #f7f9fb;
}
 
