@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0A1628;
  --navy-light: #132240;
  --gold: #C5A572;
  --gold-light: #D4BA8E;
  --gold-dark: #A88B5A;
  --white: #FFFFFF;
  --cream: #F0EDE8;
  --text-dark: #1A1A1A;
  --text-light: #F0EDE8;
  --text-muted: #6B7280;
  --border: #E5E2DD;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul, ol {
  list-style: none;
}

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

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

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.section-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-line-center {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.85rem !important;
  letter-spacing: 1px;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-line {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(240, 237, 232, 0.8);
  line-height: 1.9;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border: 1px solid rgba(197, 165, 114, 0.4);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(197, 165, 114, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240, 237, 232, 0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s infinite;
}

/* ===== Practice Areas (Home) ===== */
.practices {
  padding: 120px 0;
  background: var(--white);
}

.practices-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.practice-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.practice-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.practice-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}

.practice-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Stats ===== */
.stats {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
  opacity: 0.08;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-unit {
  font-size: 1.2rem;
  font-weight: 400;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(240, 237, 232, 0.6);
  letter-spacing: 1px;
}

.stat-divider {
  width: 24px;
  height: 1px;
  background: rgba(197, 165, 114, 0.3);
  margin: 12px auto;
}

/* ===== Attorneys ===== */
.attorneys {
  padding: 120px 0;
  background: var(--cream);
}

.attorneys-header {
  text-align: center;
  margin-bottom: 64px;
}

.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.attorney-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s;
}

.attorney-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
}

.attorney-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s;
}

.attorney-card:hover .attorney-img {
  filter: grayscale(0%);
}

.attorney-info {
  padding: 28px 24px;
  text-align: center;
}

.attorney-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.attorney-title {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.attorney-spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.attorney-divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto;
}

.attorney-edu {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== News / Column ===== */
.news {
  padding: 120px 0;
  background: var(--white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.news-more {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 1px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.news-more:hover {
  opacity: 0.7;
}

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

.news-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s;
}

.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.06);
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-body {
  padding: 28px 24px;
}

.news-tag {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 32px;
  background: #060D18;
  color: rgba(240, 237, 232, 0.5);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(197, 165, 114, 0.1);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-info p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-nav-group h4 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-nav-group a {
  display: block;
  font-size: 0.85rem;
  color: rgba(240, 237, 232, 0.5);
  margin-bottom: 8px;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.footer-bottom a:hover {
  opacity: 0.7;
}

/* ===== Features Page ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  opacity: 0.1;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-title {
  color: var(--white);
}

.page-hero .section-desc {
  color: rgba(240, 237, 232, 0.7);
  margin: 0 auto;
}

/* Features detail */
.features-detail {
  padding: 100px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(10%);
}

.feature-text .section-label {
  text-align: left;
}

.feature-text h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-hours {
  padding: 28px;
  background: var(--cream);
}

.contact-hours h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Contact Form */
.contact-form {
  padding: 48px;
  background: var(--cream);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-agree {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-agree input[type="checkbox"] {
  accent-color: var(--gold);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: var(--navy-light);
}

/* Map */
.contact-map {
  padding: 0;
  background: var(--cream);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 237, 232, 0.4);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

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

  .attorneys-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 24px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-content {
    padding: 140px 0 100px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-scroll {
    display: none;
  }

  .practices-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .attorneys-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 20px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

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

  .container {
    padding: 0 16px;
  }

  .practice-card {
    padding: 28px 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}
