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

:root {
  --primary: #0B5D6E;
  --secondary: #2D8C8F;
  --accent: #56C4C5;
  --bg-color: #F7FBFC;
  --card-bg: #FFFFFF;
  --text-color: #1D2B36;
  --text-muted: #5A7184;
  --border-color: #D9E6EA;
  --white: #FFFFFF;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(11, 93, 110, 0.05), 0 2px 4px -1px rgba(11, 93, 110, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 93, 110, 0.08), 0 4px 6px -2px rgba(11, 93, 110, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 93, 110, 0.12), 0 10px 10px -5px rgba(11, 93, 110, 0.06);
  --shadow-hover: 0 25px 35px -5px rgba(11, 93, 110, 0.18), 0 15px 15px -5px rgba(11, 93, 110, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

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

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

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

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  gap: 0.5rem;
}

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

.btn-primary:hover {
  background-color: var(--secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 600;
}

.btn-accent:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background-color: var(--bg-color);
  transform: translateY(-2px);
}

.header-spacer {
  height: 80px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.site-header.scrolled .header-container {
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
}

.logo i {
  color: var(--accent);
  font-size: 1.6rem;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

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

.nav-btn-container {
  margin-left: 2rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  color: var(--accent);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text-color);
  padding: 0.5rem;
  display: block;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary);
  transform: translateY(-2px);
}

.mobile-nav-btn {
  margin-top: 3rem;
  text-align: center;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(29, 43, 54, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.breadcrumbs-container {
  background-color: #EBF3F5;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  gap: 0.5rem;
}

.breadcrumbs li a {
  color: var(--secondary);
}

.breadcrumbs li a:hover {
  color: var(--primary);
}

.breadcrumbs li::after {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.breadcrumbs li:last-child::after {
  content: none;
}

.breadcrumbs li.active {
  color: var(--text-color);
  font-weight: 500;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: var(--border-radius-full);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.site-footer {
  background-color: #0E242B;
  color: #B0C4CD;
  padding: 5rem 0 2rem 0;
  border-top: 5px solid var(--accent);
  font-family: var(--font-body);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link i {
  font-size: 0.8rem;
  color: var(--accent);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

.footer-link:hover i {
  transform: translateX(3px);
}

.footer-newsletter-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-form {
  display: flex;
  border-radius: 9999px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-input {
  flex-grow: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.6rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.footer-input::placeholder {
  color: #708A95;
}

.footer-submit-btn {
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  outline: none;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
}

.footer-submit-btn:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
}

.back-to-top.visible {
  bottom: 30px;
}

.back-to-top:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-5px);
}

.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

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

.card-img-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
}

.card-title a:hover {
  color: var(--secondary);
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
  margin-top: auto;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.card-author-info {
  font-size: 0.85rem;
}

.card-author-name {
  font-weight: 600;
  color: var(--text-color);
}

.card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cta-section {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(86, 196, 197, 0.15) 0%, transparent 50%);
  z-index: -1;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-content {
  max-width: 650px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #B0C4CD;
  font-size: 1.15rem;
  margin-bottom: 0;
}

.cta-btn-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.newsletter-box {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input {
  flex-grow: 1;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  outline: none;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-color);
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 140, 143, 0.1);
}

.newsletter-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  outline: none;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.banner-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
  color: var(--white);
  z-index: 1;
}

.banner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 93, 110, 0.95) 0%, rgba(45, 140, 143, 0.8) 100%);
  z-index: -1;
}

.banner-content {
  max-width: 800px;
}

.banner-title {
  color: var(--white);
  font-size: 3rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.banner-desc {
  font-size: 1.2rem;
  color: #EBF3F5;
  margin-bottom: 0;
}

.home-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 10rem 0 8rem 0;
  color: var(--white);
  z-index: 1;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 93, 110, 0.9) 0%, rgba(29, 43, 54, 0.8) 100%);
  z-index: -1;
}

.home-hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.home-hero-content .hero-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.home-hero-content h1 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.home-hero-content p {
  color: #EBF3F5;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-search-box {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  color: var(--text-color);
}

.hero-search-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-search-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.hero-search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-input-wrapper input {
  width: 100%;
  padding: 1rem 1.2rem 1rem 3rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.search-input-wrapper input:focus {
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 140, 143, 0.1);
}

.welcome-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.welcome-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.welcome-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.welcome-feature-item {
  display: flex;
  gap: 1.2rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(11, 93, 110, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.insight-item-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.insight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(86, 196, 197, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
}

.insight-item-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.insight-item-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
}

.insight-link:hover {
  color: var(--primary);
}

.insight-link i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.insight-link:hover i {
  transform: translateX(4px);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.category-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

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

.category-card:hover i {
  color: var(--accent);
  transform: scale(1.1);
}

.preventive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.preventive-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.preventive-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(86, 196, 197, 0.15);
  line-height: 1;
}

.preventive-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.preventive-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.preventive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.preventive-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.preventive-list li i {
  color: var(--accent);
  font-size: 1rem;
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-choose-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.why-choose-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
}

.why-choose-item {
  display: flex;
  gap: 1.2rem;
}

.why-choose-item i {
  font-size: 1.8rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.why-choose-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why-choose-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.why-choose-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.stats-section {
  background-color: var(--primary);
  color: var(--white);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item .stat-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.stat-item p {
  color: #B0C4CD;
  font-size: 0.9rem;
  line-height: 1.6;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.lifestyle-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.lifestyle-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.lifestyle-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.lifestyle-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.lifestyle-content .btn {
  margin-top: 1.5rem;
}

.insights-search-filter {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.insights-search-form {
  display: flex;
  gap: 0.5rem;
}

.insights-search-form .search-input-wrapper {
  flex-grow: 1;
}

.filter-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-tag {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag:hover, .filter-tag.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.insights-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.trending-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.trending-sidebar-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.trending-sidebar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.8rem;
  position: relative;
}

.trending-sidebar-card h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.trending-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.trending-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trending-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}

.trending-details h4 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.trending-details h4 a:hover {
  color: var(--secondary);
}

.trending-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tip-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.tip-card:last-child {
  margin-bottom: 0;
}

.tip-card i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.tip-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.tip-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.latest-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover, .page-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.news-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card-item {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.news-card-date {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-card-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.news-card-item h3 a:hover {
  color: var(--secondary);
}

.news-card-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.topics-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.topic-detail-card {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.topic-card-header {
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(to right, rgba(11, 93, 110, 0.02), transparent);
}

.topic-card-header i {
  font-size: 2.2rem;
  color: var(--secondary);
}

.topic-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.topic-card-body {
  padding: 2.5rem;
}

.topic-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.topic-list-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.topic-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.topic-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.topic-bullets li i {
  color: var(--secondary);
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.topic-bullets li strong {
  color: var(--text-color);
}

.wellness-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.wellness-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 3rem 3rem 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

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

.wellness-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wellness-tip-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.wellness-tip-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.wellness-tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.wellness-tip-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.wellness-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 93, 110, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: #B0C4CD;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.download-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.download-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.8rem;
}

.download-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.download-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.download-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.download-meta span i {
  margin-right: 0.25rem;
  color: var(--secondary);
}

.download-btn {
  width: 100%;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question-btn h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text-color);
  transition: var(--transition);
}

.faq-question-btn i {
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-question-btn:hover h3 {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #FAFDFE;
  border-top: 1px solid transparent;
}

.faq-answer-content {
  padding: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top-color: var(--border-color);
}

.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-question-btn h3 {
  color: var(--primary);
}

.faq-item.active {
  border-color: var(--secondary);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.info-block-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-block-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(45, 140, 143, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
}

.info-block-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-block-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-block-card a:hover {
  color: var(--secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrapper {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 140, 143, 0.1);
}

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

.map-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.map-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.map-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.map-container {
  flex-grow: 1;
  min-height: 350px;
}

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

.section-tag {
  display: block;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
}

.section-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.wellness-tip-card {
  text-align: center;
}

.calculator-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calculator-icon {
  font-size: 1.8rem;
  color: var(--secondary);
}

.calculator-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
}

.calc-result {
  margin-top: 1.8rem;
  padding: 1.2rem;
  background-color: rgba(45, 140, 143, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-color);
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.calc-result.active {
  display: block;
}

.calculator-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.calc-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.calc-btn {
  margin-top: auto;
}

.calculator-card:hover {
  border-color: var(--secondary);
}

.calc-group input:focus, .calc-group select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 93, 110, 0.08);
}

.calculator-card {
  padding: 3rem 2.5rem;
  background: linear-gradient(180deg, var(--white) 0%, #FAFCFD 100%);
  border-radius: 20px;
}

.calculator-card .calculator-header {
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.calculator-card .calculator-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(45, 140, 143, 0.08);
  border: 1px solid rgba(45, 140, 143, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
}

.calculator-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0;
}

.calculator-card .calc-form {
  gap: 1.5rem;
}

.calculator-card .calc-group label {
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.9rem;
}

.calculator-card .form-control {
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 0.8rem 1.2rem;
  font-weight: 500;
}

.calculator-card .calc-result {
  border: none;
  border-left: 4px solid var(--secondary);
  background-color: rgba(86, 196, 197, 0.08);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin-top: 1.8rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--primary);
}

.calculator-card .calc-btn {
  margin-top: auto;
}

.hero-dashboard-card {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.dashboard-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  background-color: rgba(86, 196, 197, 0.1);
  color: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-full);
}

.live-indicator i {
  color: #E25C5C;
  font-size: 0.6rem;
  animation: pulseOpacity 1.5s infinite ease-in-out;
}

.dashboard-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.dashboard-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(45, 140, 143, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.metric-item:hover .metric-icon {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.metric-icon.pulse i {
  animation: heartPulse 1.2s infinite ease-in-out;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.metric-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.2;
  margin: 0.1rem 0;
}

.metric-status {
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-status.green { color: #2E7D32; }
.metric-status.blue { color: #1565C0; }
.metric-status.purple { color: #6A1B9A; }
.metric-status.orange { color: #EF6C00; }

.dashboard-footer-action {
  margin-top: auto;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

@keyframes pulseOpacity {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

.dashboard-footer-action {
  text-align: center;
}

.welcome-content {
  text-align: center;
}

.welcome-content .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.welcome-features {
  align-items: center;
}

.welcome-feature-item {
  justify-content: center;
  max-width: 450px;
  text-align: left;
}

.insight-item-card {
  text-align: center;
}

.insight-item-card .insight-icon {
  margin-left: auto;
  margin-right: auto;
}

.lifestyle-content {
  text-align: center;
}

.lifestyle-content .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.banner-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.banner-content .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.home-hero-content {
  text-align: center;
}

.home-hero-content .hero-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  justify-content: center;
}

.topic-detail-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-slow);
}

.topic-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.topic-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.topic-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.topic-card-header i {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(45, 140, 143, 0.08);
  border: 1px solid rgba(45, 140, 143, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem !important;
  color: var(--secondary);
  flex-shrink: 0;
}

.topic-detail-card {
  background: linear-gradient(180deg, var(--white) 0%, #FAFCFD 100%);
  border-radius: 20px;
  overflow: hidden;
}

.topic-card-header {
  padding: 2rem 2.5rem;
  background: linear-gradient(to right, rgba(11, 93, 110, 0.04), transparent);
}

.topic-card-body {
  padding: 2.5rem;
}

.topic-bullets {
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}

.topic-bullets li {
  padding: 0.6rem 1rem;
  background-color: var(--bg-color);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: var(--transition-slow);
}

.topic-bullets li:hover {
  background-color: rgba(86, 196, 197, 0.08);
  border-color: rgba(86, 196, 197, 0.2);
  transform: translateX(5px);
}

.topic-bullets li i {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.topic-bullets li strong {
  color: var(--primary);
}

.topic-card-body .btn {
  align-self: center;
}

.mobile-nav-close {
  position: absolute !important;
  top: 2rem !important;
  right: 2rem !important;
  width: 35px !important;
  height: 35px !important;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2200 !important;
  box-shadow: var(--shadow-md) !important;
  transition: var(--transition) !important;
  padding: 0 !important;
}

.mobile-nav-close i {
  display: none !important;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
  content: '' !important;
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: var(--white) !important;
  transition: var(--transition);
}

.mobile-nav-close::before {
  transform: rotate(45deg);
}

.mobile-nav-close::after {
  transform: rotate(-45deg);
}

.mobile-nav-close:hover {
  background-color: var(--accent) !important;
}

.mobile-nav-close:hover::before,
.mobile-nav-close:hover::after {
  background-color: var(--primary) !important;
}

.mobile-nav-panel .logo {
  display: none !important;
}

.mobile-nav-list {
  margin-top: 5rem !important;
}

.insights-search-form {
  display: none !important;
}

.insights-search-filter {
  display: block !important;
  text-align: center !important;
  margin-bottom: 3.5rem !important;
}

.filter-tags-wrapper {
  display: flex !important;
  justify-content: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.filter-tag {
  background-color: var(--white) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-color) !important;
  padding: 0.7rem 1.6rem !important;
  font-size: 0.95rem !important;
  border-radius: 9999px !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.filter-tag:hover {
  background-color: rgba(45, 140, 143, 0.08) !important;
  border-color: var(--secondary) !important;
  color: var(--secondary) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
}

.filter-tag.active {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-md) !important;
}

.filter-tag.active:hover {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
}

.topic-bullets {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin-bottom: 2.2rem !important;
}

.topic-bullets li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.8rem !important;
  padding: 0.8rem 1.2rem !important;
  background-color: #FAFDFE !important;
  border: 1px solid var(--border-color) !important;
  border-left: 4px solid var(--secondary) !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 6px rgba(11, 93, 110, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.topic-bullets li:hover {
  background-color: var(--white) !important;
  border-color: var(--accent) !important;
  border-left-color: var(--accent) !important;
  transform: translateX(6px) !important;
  box-shadow: var(--shadow-md) !important;
}

.topic-bullets li i {
  color: var(--secondary) !important;
  font-size: 1rem !important;
  margin-top: 0.25rem !important;
  transition: all 0.3s ease !important;
}

.topic-bullets li:hover i {
  color: var(--accent) !important;
  transform: scale(1.2) !important;
}

.topic-bullets li strong {
  color: var(--primary) !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* Center card tag and card title */
.card-content .card-tag,
.card-content .card-title {
  align-self: center;
  text-align: center;
}

/* Left-align info-block-card paragraph content */
.info-block-card p {
  text-align: left;
}

