/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #9f1b01;
  --primary-foreground: #fafaf9;
  --background: #fffbef;
  --foreground: #1c1917;
  --card: #ffffff;
  --card-foreground: #1c1917;
  --muted: #f5f5f4;
  --muted-foreground: #78716c;
  --accent: #d97706;
  --accent-foreground: #fafaf9;
  --border: #e7e5e4;
  --radius: 0.75rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

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

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

.text-primary {
  color: var(--primary);
}

/* Butter Decoration Styles */
.butter-decoration {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
  max-width: 200px;
  opacity: 0.9;
}

.butter-decoration img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .butter-decoration {
    max-width: 120px;
  }
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 1.125rem;
  padding: 0.4rem;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  padding: 0.3rem;
}

.site-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--foreground);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--foreground);
}

/* Added mobile menu button styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

/* Added mobile navigation styles */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color 0.3s;
  font-size: 1.125rem;
}

.mobile-nav-link:hover {
  color: var(--foreground);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: #8a1801;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(159, 27, 1, 0.3);
}

.btn-secondary {
  background: var(--card);
  color: var(--foreground);
}

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

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--muted);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--foreground);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--border);
}

.badge-secondary {
  background: var(--muted);
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

/* Hero Section */
.hero {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--muted) 50%, rgba(217, 119, 6, 0.1) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 32rem;
}

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

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.hero-image-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  padding: 1rem;
}

.card-title {
  font-weight: 600;
  color: var(--foreground);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.blob-1 {
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(159, 27, 1, 0.2);
}

.blob-2 {
  bottom: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  background: rgba(217, 119, 6, 0.2);
}

/* Section */
.section {
  padding: 5rem 1rem;
}

.section-muted {
  background: rgba(245, 245, 244, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
}

.image-container {
  position: relative;
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.15);
}

.image-overlay {
  display: none;
}

/* Card */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card-image img:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

/* Instagram Post */
.instagram-post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.instagram-post:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.post-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-username {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.post-time {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.post-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--muted-foreground);
}

.post-menu svg {
  width: 1rem;
  height: 1rem;
}

.post-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.instagram-post:hover .post-image img {
  transform: scale(1.05);
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.post-actions-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--foreground);
  transition: color 0.3s;
}

.post-action-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.post-action-btn:hover {
  color: var(--primary);
}

.post-content {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.post-likes {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--foreground);
}

.post-caption {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.post-comments {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: left;
  transition: color 0.3s;
}

.post-comments:hover {
  color: var(--foreground);
}

/* About Section */
.about-content {
  max-width: 56rem;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.about-text p {
  margin: 0;
}

.about-text strong {
  color: var(--foreground);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background: rgba(159, 27, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.value-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.value-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.about-footer {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  padding: 2rem;
  background: rgba(159, 27, 1, 0.05);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.about-footer strong {
  color: var(--foreground);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #fcab10 0%, #e09a00 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(15deg);
  pointer-events: none;
}

.cta-wrapper {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.cta-badge .icon {
  width: 1rem;
  height: 1rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .cta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: white;
}

.cta-card-highlight {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fcab10;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.cta-card-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: rgba(159, 27, 1, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9f1b01;
  transition: all 0.3s;
}

.cta-card:hover .cta-card-icon {
  background: #9f1b01;
  color: white;
  transform: scale(1.1);
}

.cta-card-icon svg {
  width: 2rem;
  height: 2rem;
}

.cta-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.cta-card-text {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fcab10;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-card-link:hover {
  gap: 0.75rem;
  color: #e09a00;
}

.cta-card-link .icon-sm {
  transition: transform 0.3s;
}

.cta-card-link:hover .icon-sm {
  transform: translateX(4px);
}

.cta-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 640px) {
  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.cta-stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.cta-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 3rem 1rem;
  background: var(--card);
  border-top: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Added legal page styles */
.legal-section {
  background: var(--background);
  min-height: 60vh;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--foreground);
  text-align: center;
}

.legal-block {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.legal-block h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.legal-block p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block strong {
  color: var(--foreground);
  font-weight: 600;
}

.legal-block a {
  color: var(--primary);
  text-decoration: underline;
}

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

.legal-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(159, 27, 1, 0.05);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-top: 3rem;
}

.legal-footer p {
  margin-bottom: 1.5rem;
  color: var(--muted-foreground);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
/* Enhanced mobile responsive styles */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .site-title {
    font-size: 1rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .stat {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 120px;
  }

  .hero-image {
    height: 400px;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .grid-3 {
    gap: 1.5rem;
  }

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

  .values-grid {
    gap: 1.5rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-grid {
    gap: 1.5rem;
  }

  .cta-card {
    padding: 1.5rem;
  }

  .cta-card-title {
    font-size: 1.25rem;
  }

  .cta-stats {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .cta-stat-value {
    font-size: 2rem;
  }

  .cta-stat-label {
    font-size: 0.875rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .legal-block {
    padding: 1rem;
  }

  .legal-block h2 {
    font-size: 1.25rem;
  }

  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .card-text {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.9375rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9375rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-card-title {
    font-size: 1.125rem;
  }

  .cta-stat-value {
    font-size: 1.75rem;
  }
}
