/* Variables & base */
:root{
	--bg:#ffffff;
	--card:#ffffff;
	--accent:#4f46e5;
	--accent-hover:#4338ca;
	--accent-light:rgba(79,70,229,0.08);
	--muted:#657085;
	--text:#1e293b;
	--border:rgba(30,41,59,0.07);
	--radius:12px;
	--shadow:0 8px 30px rgba(15,23,42,0.06);
	--container:1100px;
	--transition:all 0.25s ease;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;}
body{background:var(--bg);color:var(--text);-webkit-font-smoothing:antialiased;line-height:1.6;padding-top:72px}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
h1,h2,h3{line-height:1.3;margin-top:0}
h2{font-size:2rem;margin-bottom:0.5rem}
h3{font-size:1.3rem;margin-bottom:0.5rem}

/* Header */
.site-header {
  background: white;
  padding: 16px 0;
  position: fixed; /* Changed from sticky to fixed */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(11,18,32,0.04);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
  will-change: transform;
  backdrop-filter: blur(8px);
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(11,18,32,0.08);
  background-color: rgba(255, 255, 255, 0.98);
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-right: 40px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  font-weight: 700;
  margin-right: 10px;
}

.logo-image {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  list-style: none;
  z-index: 20;
  margin: 0;
  border: 1px solid var(--border);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 8px 16px;
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.nav-auth {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-toggle:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border-radius: 2px;
}

.hamburger::after,
.hamburger::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Animated hamburger when menu is open */
.nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Badge */
.badge-highlight{
	display:inline-block;
	background:var(--accent-light);
	color:var(--accent);
	border-radius:20px;
	padding:6px 14px;
	font-size:0.85rem;
	font-weight:600;
	margin-bottom:1rem;
}

/* Hero */
.hero{padding:80px 0 60px}
.hero-inner{display:flex;gap:60px;align-items:center}
.hero-copy{flex:1;max-width:600px;opacity:0;transform:translateY(10px);transition:var(--transition);animation:fadeInUp 0.7s forwards 0.2s}
.hero-copy h1{font-size:2.6rem;margin:0 0 16px;line-height:1.15;color:var(--text)}
.lead{color:var(--muted);margin:0 0 24px;font-size:1.1rem}

/* Icons */
.icon-check{
	display:inline-block;
	width:16px;
	height:16px;
	background:var(--accent);
	border-radius:50%;
	position:relative;
	margin-right:8px;
}
.icon-check:before{
	content:"";
	position:absolute;
	width:6px;
	height:3px;
	border-left:2px solid white;
	border-bottom:2px solid white;
	transform:rotate(-45deg);
	left:4px;
	top:5px;
}

.icon{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:50px;
	height:50px;
	border-radius:12px;
	background:var(--accent-light);
	color:var(--accent);
	font-size:1.5rem;
	position:relative;
}

.icon-tracking:before{content:"🔬"}
.icon-patients:before{content:"👥"}
.icon-reports:before{content:"📊"}

/* Hero CTA */
.hero-ctas{display:flex;gap:12px;margin-bottom:24px}
.btn{
	background:var(--accent);
	color:white;
	padding:12px 20px;
	border-radius:8px;
	text-decoration:none;
	font-weight:600;
	transition:var(--transition);
	border:none;
	font-size:1rem;
	display:inline-block;
	text-align:center;
	cursor:pointer;
}
.btn:hover{background:var(--accent-hover)}

.btn-outline{
	border:1px solid var(--border);
	padding:11px 18px;
	border-radius:8px;
	text-decoration:none;
	color:var(--accent);
	transition:var(--transition);
	background:transparent;
	font-weight:500;
	display:inline-block;
	text-align:center;
	cursor:pointer;
}
.btn-outline:hover{border-color:var(--accent);background:var(--accent-light)}

.btn-outline2{
	border:1px solid #a0aec0;
	padding:11px 18px;
	border-radius:8px;
	text-decoration:none;
	color:#ffffff;
	transition:var(--transition);
	background:transparent;
	font-weight:500;
	display:inline-block;
	text-align:center;
	cursor:pointer;
}
.btn-outline2:hover{border-color:#ffffff;background:var(--accent-light)}

/* Trust points */
.trust{
	display:flex;
	gap:20px;
	margin:12px 0 0;
	padding:0;
	list-style:none;
	color:var(--muted);
	font-size:0.95rem;
	flex-wrap:wrap;
}

/* Hero media card */
.hero-media{
	flex:0 0 440px;
	opacity:0;
	transform:translateY(20px);
	transition:var(--transition);
	animation:fadeInUp 0.7s forwards 0.4s;
}
.card-ui{
	background:var(--card);
	border-radius:16px;
	box-shadow:var(--shadow);
	overflow:hidden;
	border:1px solid var(--border);
}
.card-header{
	padding:18px;
	border-bottom:1px solid var(--border);
	font-weight:600;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.card-title{font-weight:600}
.card-actions{display:flex;gap:6px}
.card-dot{
	width:8px;
	height:8px;
	border-radius:50%;
	background:var(--border);
}
.card-dot:first-child{background:#f87171}
.card-dot:nth-child(2){background:#facc15}
.card-dot:last-child{background:#4ade80}

.card-body{padding:20px}
.stat-row{
	display:flex;
	gap:24px;
	align-items:center;
	justify-content:space-between;
	margin-bottom:20px;
}
.stat-row strong{
	font-size:1.8rem;
	display:block;
	margin-bottom:2px;
}
.chart-container{
	border-radius:8px;
	background:var(--accent-light);
	padding:16px;
	margin-top:16px;
}
.chart{
	height:100px;
	background-image:linear-gradient(90deg, var(--accent) 0%, transparent 50%), linear-gradient(90deg, transparent 60%, var(--accent-hover) 100%);
	border-radius:6px;
	margin-top:10px;
	position:relative;
}
.chart:before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:40%;
	height:1px;
	background:rgba(255,255,255,0.3);
}
.chart-legend{
	display:flex;
	gap:16px;
	font-size:0.85rem;
}
.legend-item{
	display:flex;
	align-items:center;
}
.legend-color{
	width:10px;
	height:10px;
	border-radius:2px;
	margin-right:6px;
}
.legend-color.complete{background:var(--accent)}
.legend-color.pending{background:var(--accent-hover)}

/* Stats Bar */
.stats-bar{
	background:#f8fafc;
	padding:30px 0;
	border-top:1px solid var(--border);
	border-bottom:1px solid var(--border);
}
.stats-grid{
	display:flex;
	justify-content:space-between;
	text-align:center;
}
.stat-item{
	opacity:0;
	transform:translateY(10px);
	transition:var(--transition);
}
.stat-item.visible{
	opacity:1;
	transform:translateY(0);
}
.stat-number{
	font-size:2rem;
	font-weight:700;
	color:var(--accent);
	margin-bottom:5px;
}
.stat-label{
	font-size:0.9rem;
	color:var(--muted);
}

/* Features */
.section-header{
	text-align:center;
	margin-bottom:40px;
	max-width:700px;
	margin-left:auto;
	margin-right:auto;
}
.features{padding:80px 0}
.features-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
	margin-bottom:40px;
}
.feature{
	background:var(--card);
	padding:28px;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	border:1px solid var(--border);
	transition:var(--transition);
	opacity:0;
	transform:translateY(20px);
}
.feature.visible{
	opacity:1;
	transform:translateY(0);
}
.feature:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 35px rgba(15,23,42,0.1);
}
.feature-icon{
	margin-bottom:20px;
}
.features-cta{
	text-align:center;
	margin-top:30px;
}

/* Testimonials */
.testimonials{
	background:#f8fafc;
	padding:80px 0;
	border-top:1px solid var(--border);
}
.testimonial-grid{
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:30px;
}
.testimonial{
	background:white;
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	padding:30px;
	border:1px solid var(--border);
	transition:var(--transition);
	opacity:0;
	transform:translateY(20px);
}
.testimonial.visible{
	opacity:1;
	transform:translateY(0);
}
.testimonial:hover{
	transform:translateY(-5px);
	box-shadow:0 15px 35px rgba(15,23,42,0.1);
}
.testimonial-content{
	margin-bottom:20px;
	font-style:italic;
}
.testimonial-content p{
	margin:0;
	font-size:1.05rem;
	line-height:1.7;
}
.testimonial-content p:before,
.testimonial-content p:after{
	content:""";
	color:var(--accent);
	font-size:1.5em;
}
.testimonial-content p:after{
	content:""";
}
.testimonial-author{
	display:flex;
	align-items:center;
}
.author-avatar{
	width:40px;
	height:40px;
	border-radius:50%;
	background:var(--accent);
	color:white;
	display:flex;
	align-items:center;
	justify-content:center;
	margin-right:12px;
	font-weight:600;
	font-size:0.85rem;
}
.author-name{
	font-weight:600;
	font-size:0.95rem;
}
.author-title{
	font-size:0.85rem;
	color:var(--muted);
}

/* Contact CTA */
.contact-cta{
	background:linear-gradient(to right, var(--accent-light), rgba(79,70,229,0.04));
	padding:60px 0;
	margin-top:40px;
	border-radius:0;
}
.contact-inner{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:40px;
}
.contact-actions{
	display:flex;
	gap:12px;
}
.contact-inner h2{
	margin-bottom:10px;
}
.contact-inner p{
	margin:0;
	font-size:1.05rem;
}

/* Footer */
.site-footer {
  background: #f8fafc;
  padding: 60px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 40px;
}

.footer-brand {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .small {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.footer-logo-image {
  height: 38px;
  width: auto;
  margin-right: 12px;
}

.brand-info {
  margin-left: 12px;
}

.brand-info strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.footer-nav-group h4 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 16px;
}

.footer-nav-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-group ul li {
  margin-bottom: 10px;
}

.footer-nav-group ul a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav-group ul a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: white;
}

.social-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icon.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.social-icon.twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
}

.social-icon.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal {
  display: flex;
  gap: 20px;
}

.legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.legal a:hover {
  color: var(--accent);
}

/* Updated Hero Media Card */
.success-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.metric-icon:before {
  font-size: 1.5rem;
}

.metric-icon.efficiency:before {content: "⚡"}
.metric-icon.speed:before {content: "🚀"}
.metric-icon.security:before {content: "🔒"}

.metric-text h4 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.metric-text p {
  margin: 0;
  font-size: 0.9rem;
}

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

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15,23,42,0.1);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(79,70,229,0.15);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.popular-tag {
  position: absolute;
  top: 12px;
  right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px 0 0 4px;
}

.pricing-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
  margin: 3px 0 15px;
  font-size: 1.4rem;
}

.price {
  margin-bottom: 15px;
}

.price .amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}

.price .duration {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-description {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-features {
  padding: 30px;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start; /* Changed from center to flex-start */
  line-height: 1.4;
}

.feature-icon {
  display: inline-flex;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px; /* Added to align with the first line of text */
}

.feature-icon.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(79,70,229,0.1);
  position: relative;
}

.feature-icon.check:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  top: 6px;
  left: 6px;
}

.pricing-cta {
  padding: 20px 30px 30px;
}

.full-width {
  width: 100%;
  text-align: center;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.text-link:hover {
  text-decoration: underline;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Updated Footer with horizontal menu */
.footer-nav-horizontal {
  margin-top: 20px;
}

.footer-nav-horizontal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.footer-nav-horizontal a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-nav-horizontal a:hover {
  color: var(--accent);
}

.footer-nav-horizontal a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background-color: var(--border);
}

/* Improved mobile footer styles */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
    text-align: center;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: auto;
    width: 100%;
  }

  .footer-logo {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .footer-logo .small {
    margin-bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .brand-info {
    margin-left: 0;
    text-align: center;
  }

  .social-links {
    margin-top: 16px;
    justify-content: center;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .footer-nav-horizontal {
    width: 100%;
    margin-top: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .footer-nav-horizontal nav {
    justify-content: center;
    padding: 10px 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding-top: 15px;
  }

  .legal {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .footer-nav-horizontal nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    text-align: center;
  }
  
  .footer-nav-horizontal a:after {
    display: none;
  }
  
  .footer-nav-horizontal a {
    padding: 8px 0;
    font-weight: 500;
  }
  
  .legal {
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
  }
  
  .legal a {
    padding: 5px 0;
  }
}

/* Contact Page Styles */
.page-header {
  background: linear-gradient(to right, var(--accent-light), rgba(79,70,229,0.04));
  padding: 80px 0 40px;
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--text);
}

.page-header .lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 40px;
}

.form-card, .contact-info-card, .faq-preview {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 30px;
  height: fit-content;
}

.contact-form-wrapper {
  height: 100%;
}

.form-card h2 {
  margin-bottom: 8px;
}

.form-card p.muted {
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f9fafc;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
  background: white;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.contact-info-card {
  margin-bottom: 30px;
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-icon.phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.contact-icon.email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.contact-icon.location {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.contact-info-item h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.contact-info-item p {
  margin: 0 0 4px;
}

.contact-info-item p a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info-item p a:hover {
  text-decoration: underline;
}

.social-contact h4 {
  margin-bottom: 16px;
}

.faq-preview {
  padding-bottom: 20px;
}

.faq-preview h3 {
  margin-bottom: 20px;
}

.faq-item {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.faq-item h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.faq-link {
  margin-top: 20px;
}

/* Responsive styles for contact page */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card, .contact-info-card, .faq-preview {
    padding: 25px;
  }
  
  .page-header {
    padding: 60px 0 30px;
    margin-bottom: 40px;
  }
  
  .page-header h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .form-card, .contact-info-card, .faq-preview {
    padding: 20px;
    border-radius: 10px;
  }
  
  .contact-info-list {
    gap: 20px;
  }
  
  .page-header {
    padding: 40px 0 25px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header .lead {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .contact-section {
    padding-bottom: 60px;
  }
}

/* Legal/Static Page Styles */
.page-header.simple {
  background: linear-gradient(to right, rgba(79,70,229,0.03), rgba(79,70,229,0.08));
  padding: 50px 0 30px;
  margin-bottom: 40px;
  text-align: left;
}

.page-header.simple h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.breadcrumbs {
  margin-top: 20px;
  font-size: 0.9rem;
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: var(--border);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.content-wrapper {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}

.content-main {
  flex: 1;
  min-width: 0; /* Fix for text overflow */
}

.content-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.page-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.page-content h2 {
  font-size: 1.8rem;
  margin: 1.5em 0 0.8em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--border);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.4rem;
  margin: 1.4em 0 0.6em;
}

.page-content h4 {
  font-size: 1.2rem;
  margin: 1.2em 0 0.5em;
}

.page-content p, 
.page-content ul, 
.page-content ol {
  margin-bottom: 1.2em;
}

.page-content ul, 
.page-content ol {
  padding-left: 1.5em;
}

.page-content li {
  margin-bottom: 0.5em;
}

.page-content a {
  color: var(--accent);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.page-content blockquote {
  border-left: 4px solid var(--accent-light);
  padding: 0.8em 1em;
  margin: 1.5em 0;
  background: rgba(79,70,229,0.03);
  color: var(--muted);
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.95rem;
}

.page-content th, 
.page-content td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.page-content th {
  font-weight: 600;
  background: rgba(79,70,229,0.03);
}

.page-content tr:hover {
  background-color: rgba(79,70,229,0.01);
}

.last-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2em;
  font-style: italic;
}

.contact-box {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 40px;
}

.contact-box h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-box p {
  margin-bottom: 0;
}

.related-content {
  background: #f8fafc;
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.related-content h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.6rem;
}

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

.related-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

.related-item h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--text);
}

.related-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Sidebar content styles */
.content-sidebar {
  font-size: 0.95rem;
}

.content-sidebar h4 {
  font-size: 1rem;
  margin: 0 0 15px;
}

.content-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.content-sidebar li {
  margin-bottom: 10px;
}

.content-sidebar a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}

.content-sidebar a:hover,
.content-sidebar a.active {
  color: var(--accent);
}

.content-sidebar .card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
}

/* Responsive styles for legal pages */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
  }
  
  .content-sidebar {
    width: 100%;
    margin-top: 40px;
    order: 2;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .page-header.simple h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header.simple {
    padding: 40px 0 25px;
    margin-bottom: 30px;
  }
  
  .page-header.simple h1 {
    font-size: 1.8rem;
  }
  
  .breadcrumbs {
    font-size: 0.8rem;
  }
  
  .content-wrapper {
    margin-bottom: 40px;
  }
}

/* Blog Styles */
/* Blog listing page */
.blog-header {
  text-align: center;
  padding: 70px 0 40px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.blog-category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-category:hover {
  background: var(--accent-light);
  border-color: transparent;
  color: var(--accent);
}

.blog-category.active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
  padding: 20px 28px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.filter-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.filter-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #e9ecef;
  border-radius: 50%;
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: var(--transition);
  line-height: 1;
}

.filter-remove:hover {
  background: #dc3545;
  color: white;
}

.clear-filters {
  padding: 6px 16px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin-left: auto;
}

.clear-filters:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.blog-section {
  padding: 60px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-featured {
  margin-bottom: 40px;
}

.featured-post {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15,23,42,0.1);
}

.featured-image {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-content {
  padding: 25px;
}

.featured-content h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text);
}

.post-excerpt {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.post-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  margin-bottom: 25px;
  font-size: 1.6rem;
}

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

.small-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15,23,42,0.1);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.read-time {
  color: var(--muted);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 0 12px;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.page-link:hover:not(.disabled) {
  background: var(--accent-light);
  color: var(--accent);
  border-color: transparent;
}

.page-link.active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 40px;
  color: var(--muted);
}

/* Blog sidebar */
.blog-sidebar {
  position: sticky;
  top: 92px; /* Header height + padding */
  align-self: start;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
}

.sidebar-widget {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.search-form {
  display: flex;
  position: relative;
}

.search-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f9fafc;
}

.search-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 5px;
  line-height: 0;
}

.search-btn:hover {
  color: var(--accent);
}

.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  padding: 5px 0;
}

.popular-post:hover h4 {
  color: var(--accent);
}

.popular-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.popular-content h4 {
  font-size: 1rem;
  margin: 0 0 8px;
  transition: var(--transition);
}

.widget-text {
  color: var(--muted);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f9fafc;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 6px;
  background: #f9fafc;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.tag:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: transparent;
}

.tag.active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.cta-banner {
  background: linear-gradient(45deg, var(--accent), var(--accent-hover));
  padding: 50px 0;
  color: white;
  text-align: center;
  margin-top: 40px;
}

.cta-content h2 {
  color: white;
  margin-bottom: 15px;
  font-size: 2rem;
}

.cta-content p {
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.cta-content .btn:hover {
  background: rgba(255,255,255,0.9);
}

/* Blog post page */
.blog-post {
  padding-bottom: 50px;
}

.post-header {
  background: linear-gradient(to bottom, var(--accent-light), #f8fafc);
  padding: 60px 0 30px;
  text-align: center;
}

.post-header h1 {
  font-size: 2.6rem;
  margin: 15px 0 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-header .post-meta {
  justify-content: center;
  margin-bottom: 30px;
  gap: 30px;
}

.post-header .post-author {
  gap: 15px;
}

.post-header .author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}

.post-header .author-name {
  color: var(--text);
  font-weight: 500;
}

.post-header .author-title {
  font-size: 0.85rem;
}

.post-header .post-info {
  display: flex;
  gap: 15px;
}

.post-hero {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: -150px;
}

.post-content {
  padding: 0 0 0;
}

.post-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 40px;
}

.post-main {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.post-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 30px;
}

.post-main h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text);
}

.post-main h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.post-main p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.post-main ul, .post-main ol {
  margin-bottom: 25px;
  padding-left: 25px;
}

.post-main li {
  margin-bottom: 10px;
}

.post-image {
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.post-image img {
  width: 100%;
  display: block;
}

.post-image figcaption {
  padding: 10px 15px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.post-callout {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 25px;
  margin: 30px 0;
}

.post-callout h4 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 10px;
}

.post-callout p {
  margin-bottom: 0;
}

.post-quote {
  border-left: 4px solid var(--accent);
  padding: 5px 0 5px 25px;
  margin: 30px 0;
  font-style: italic;
}

.post-quote p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.post-quote cite {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.tag-label {
  color: var(--muted);
  font-weight: 500;
}

.post-share {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.share-label {
  color: var(--muted);
  font-weight: 500;
  margin-right: 15px;
}

.share-buttons {
  display: flex;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  transition: var(--transition);
}

.share-button:hover {
  background: var(--accent);
}

.share-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: filter 0.2s;
}

.share-button:hover .share-icon {
  filter: brightness(5);
}

.share-icon.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.share-icon.twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
}

.share-icon.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E");
}

.share-icon.email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.author-bio {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  padding: 30px;
  background: #f8fafc;
  border-radius: var(--radius);
}

.author-image {
  width: 100px;
  flex-shrink: 0;
}

.author-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.author-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 0;
  color: var(--muted);
}

.post-sidebar {
  position: sticky;
  top: 100px;
  height: max-content;
}

.toc-widget {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-link {
  display: block;
  padding: 8px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

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

.related-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-post {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-image {
  height: 140px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

.related-post h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  transition: var(--transition);
}

.related-post:hover h4 {
  color: var(--accent);
}

.cta-widget {
  background: linear-gradient(to right, rgba(79,70,229,0.04), rgba(79,70,229,0.12));
}

.cta-widget h3 {
  color: var(--accent);
}

.cta-widget p {
  margin-bottom: 20px;
}

.cta-widget .btn {
  margin-bottom: 10px;
}

.post-navigation {
  background: #f8fafc;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.post-nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.post-nav {
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.post-nav:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15,23,42,0.08);
}

.post-nav.previous {
  text-align: left;
}

.post-nav.next {
  text-align: right;
}

.nav-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.post-nav h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.more-posts {
  padding: 60px 0;
}

/* Responsive styles for blog */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .blog-sidebar {
    order: 2;
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  
  .small-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-layout {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .blog-header {
    padding: 50px 0 30px;
  }
  
  .blog-header h1 {
    font-size: 2.2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .small-grid {
    grid-template-columns: 1fr;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-hero {
    height: 300px;
    margin-bottom: -100px;
  }
  
  .post-content {
    padding: 100px 0 0;
  }
  
  .post-main {
    padding: 30px 20px;
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .post-nav-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Fix for horizontal scrolling on blog pages */
  .blog-section .container,
  .post-content .container,
  .post-header .container,
  .post-navigation .container,
  .more-posts .container {
    padding: 0 15px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .blog-header .container,
  .page-header .container {
    padding: 0 15px;
  }
  
  /* Improve readability of blog content on mobile */
  .card-content h3 {
    font-size: 1.1rem;
  }
  
  .post-excerpt {
    font-size: 0.95rem;
  }
  
  .featured-content {
    padding: 20px;
  }
  
  .featured-content h2 {
    font-size: 1.4rem;
  }
  
  /* Fix overflow issues with post content */
  .post-main {
    padding: 25px 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .post-main img,
  .post-image img {
    max-width: 100%;
    height: auto;
  }
  
  /* Prevent text from causing horizontal scroll */
  .post-main h2,
  .post-main h3,
  .post-main p,
  .post-main ul,
  .post-main ol {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Fix table overflow on mobile */
  .post-main table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  
  /* Improve code blocks display on mobile */
  .post-main pre {
    overflow-x: auto;
    padding: 15px;
    max-width: 100%;
  }
  
  /* Fix pagination layout */
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Fix post navigation layout */
  .post-nav h4 {
    font-size: 1rem;
  }
  
  /* Fix author bio section */
  .author-bio {
    padding: 15px;
    text-align: center;
  }
}

/* Additional blog post fixes for medium screens */
@media (max-width: 768px) {
  /* Fix blog page content overflow */
  .blog-layout {
    overflow-x: hidden;
  }
  
  /* Improve blog grid layout for small screens */
  .blog-grid, .small-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  /* Fix featured image height on smaller screens */
  .featured-image {
    height: 250px;
  }
  
  /* Make sidebar widgets more compact */
  .sidebar-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  /* Adjust post content padding */
  .post-content {
    padding-top: 100px;
  }
  
  /* Fix hero image margin */
  .post-hero {
    margin-bottom: -80px;
  }
}

/* FAQ Page Styles */
.faq-section {
  padding: 60px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  height: max-content;
}

.faq-categories {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 25px;
  margin-bottom: 30px;
}

.faq-categories h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  display: block;
  padding: 10px 15px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  font-weight: 500;
}

.category-list a:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.category-list a.active {
  background: var(--accent);
  color: white;
}

.sidebar-cta {
  background: linear-gradient(to right, rgba(79,70,229,0.04), rgba(79,70,229,0.12));
  border-radius: var(--radius);
  padding: 25px;
  border: 1px solid var(--border);
}

.sidebar-cta h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--accent);
}

.sidebar-cta p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.search-container {
  margin-bottom: 30px;
}

.faq-search {
  display: flex;
  position: relative;
}

.faq-search input {
  flex: 1;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.search-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
}

.search-btn:hover {
  color: var(--accent);
}

.faq-category {
  margin-bottom: 50px;
  scroll-margin-top: 120px;
}

.faq-category h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--text);
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 10px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--accent-light);
  color: var(--accent);
}

.accordion-header.active {
  color: var(--accent);
}

.accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.6;
}

.accordion-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.accordion-content ul li {
  margin-bottom: 8px;
}

.cta-banner .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

/* Mobile responsive fixes for header and navigation */
@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    visibility: hidden;
    height: auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    gap: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
    border-radius: 10px;
    display: block;
  }

  .nav-auth {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .nav-auth .btn, 
  .nav-auth .btn-outline {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    height: 0;
    transition: height 0.3s ease;
    border: none;
    padding: 0 0 0 20px;
    transform: none;
  }

  .nav-item.open .dropdown-menu {
    visibility: visible;
    height: auto;
  }
}

/* Mobile responsive fixes for hero section */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

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

  .trust {
    justify-content: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-media {
    width: 100%;
    flex: none;
    order: 2;
  }
  
  .stat-item {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
  
  .stats-grid {
    flex-wrap: wrap;
  }

  /* Fix for content overlapping when mobile menu is open */
  body.nav-open {
    overflow: hidden;
  }
}

/* Additional responsive fixes for smaller mobile devices */
@media (max-width: 600px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn,
  .hero-ctas .btn-outline {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card.featured {
    transform: none;
    margin: 30px 0;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  .contact-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-actions {
    margin-top: 20px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  /* Fix for statistics bar on very small screens */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: 0;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  /* Improve spacing in features section */
  .features {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Enhanced responsive styles for FAQ page */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  
  .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  
  .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .category-list li {
    margin-bottom: 0;
  }
  
  .category-list a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .accordion-header {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .accordion-content {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 30px 0;
  }
  
  .accordion-header {
    padding: 15px;
    font-size: 0.95rem;
    align-items: flex-start;
  }
  
  .accordion-icon {
    margin-top: 2px;
    min-width: 18px;
  }
  
  .accordion-content {
    padding: 0 15px;
  }
  
  .cta-banner .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-banner .cta-buttons a {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .faq-category h2 {
    font-size: 1.4rem;
  }
  
  .faq-search input {
    padding: 10px;
    font-size: 0.95rem;
  }
  
  /* Fix overflowing content in accordion */
  .accordion-content p,
  .accordion-content ul,
  .accordion-content li {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  
  /* Fix spacing in mobile search */
  .search-container {
    margin-bottom: 20px;
  }
  
  /* Improve sidebar on mobile */
  .faq-categories, 
  .sidebar-cta {
    padding: 20px 15px;
  }
  
  /* Fix category links on mobile */
  .category-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .category-list a {
    padding: 8px 10px;
    font-size: 0.85rem;
    text-align: center;
  }
  
  /* Prevent horizontal scroll in FAQ content */
  .faq-content {
    overflow-x: hidden;
    width: 100%;
  }
}

/* Flash Messages */
.flash-messages-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  animation: slideInRight 0.3s ease;
}

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

.flash-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: white;
  border-left: 4px solid;
  animation: slideIn 0.3s ease;
}

.flash-message.flash-success {
  border-left-color: #10b981;
  background: linear-gradient(to right, #ecfdf5, #ffffff);
}

.flash-message.flash-error {
  border-left-color: #ef4444;
  background: linear-gradient(to right, #fef2f2, #ffffff);
}

.flash-message.flash-info {
  border-left-color: #3b82f6;
  background: linear-gradient(to right, #eff6ff, #ffffff);
}

.flash-message.flash-warning {
  border-left-color: #f59e0b;
  background: linear-gradient(to right, #fffbeb, #ffffff);
}

.flash-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.flash-success .flash-icon {
  background: #d1fae5;
  color: #065f46;
}

.flash-error .flash-icon {
  background: #fee2e2;
  color: #991b1b;
}

.flash-info .flash-icon {
  background: #dbeafe;
  color: #1e40af;
}

.flash-warning .flash-icon {
  background: #fed7aa;
  color: #92400e;
}

.flash-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1e293b;
  font-weight: 500;
}

.flash-close {
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #64748b;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.flash-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1e293b;
}

/* Auto-hide flash messages after 5 seconds */
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .flash-messages-container {
    top: 80px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .flash-message {
    padding: 12px 16px;
  }

  .flash-text {
    font-size: 0.875rem;
  }

  /* Mobile Navigation */
  .site-header {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .site-nav.open {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 15px 15px;
    font-size: 1.1rem;
  }

  .nav-auth {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .nav-auth .btn,
  .nav-auth .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Prevent body scroll when mobile menu is open */
  body.nav-open {
    overflow: hidden;
  }

  /* Typography */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  /* Container padding */
  .container {
    padding: 0 15px;
  }

  /* Content wrapper - single column on mobile */
  .content-wrapper {
    flex-direction: column;
  }

  .content-main {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .content-sidebar {
    width: 100%;
  }

  /* Cards */
  .card {
    padding: 20px 15px;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Page header */
  .page-header {
    padding: 30px 0;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  /* Tables */
  table {
    font-size: 0.875rem;
  }

  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Forms */
  .form-group {
    margin-bottom: 15px;
  }

  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-image {
    height: 32px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 12px;
  }

  .page-header {
    padding: 20px 0;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
