:root {
  /* Earth-toned, sophisticated palette inspired by nature and data */
  --forest-dark: #1a3a2e;
  --forest-mid: #2d5f4f;
  --sage: #7a9b8a;
  --sand: #e8dcc4;
  --ocean: #2a5a7a;
  --terracotta: #c85a3f;
  --cream: #faf7f0;
  --charcoal: #2b2b2b;
  --deep-forest: #183c2f;
  --border-color: #e0e0e0;

  --font-display: "Crimson Pro", serif;
  --font-body: "DM Sans", sans-serif;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
}

/* Animated background pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(42, 90, 122, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(122, 155, 138, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(200, 90, 63, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(2deg);
  }
}

/* =========================
   NAVIGATION
========================= */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(122, 155, 138, 0.2);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-dark);
  letter-spacing: -0.5px;
  text-decoration: none;
  cursor: pointer;
}

.logo span {
  color: var(--ocean);
  font-weight: 400;
  font-style: italic;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  transition: var(--transition);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

@media (max-width: 768px) {
  nav .container {
    padding: 1rem 1.5rem;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1200;
  }

  nav ul {
    flex-direction: column;
    gap: 1.8rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--cream);
    padding: 6rem 2rem;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }

  .nav-menu ul {
    align-items: flex-start;
  }

  .nav-menu a {
    font-size: 1rem;
  }
}

.nav-menu.active {
  transform: translateX(0);
}

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

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   SECTION
========================= */

section {
  padding: 7rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

section h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--forest-dark);
  margin-bottom: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 1rem;
}

section h2::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--terracotta);
}

section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), transparent);
}

/* =========================
   BUTTON
========================= */

.btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 15px rgba(200, 90, 63, 0.25);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #b94e35;
  box-shadow: 0 8px 22px rgba(200, 90, 63, 0.35);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: white;
  color: var(--forest-dark);
}

.small-break {
  display: block;
  height: 0.5rem;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  margin-top: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background-image: url("../img/mountain-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 46, 0.85),
    rgba(42, 90, 122, 0.75)
  );
  z-index: 1;
}

/* Container */
.hero .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem 6rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Academic Label */
.hero-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Main Heading */
.hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.6rem;
  font-weight: 700;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Description */
.hero-content p {
  font-size: 1.1rem;
  color: white;
  margin: 0 auto 2.5rem auto;
  max-width: 760px;
  line-height: 1.85;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* CTA */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

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

/* Responsive */
@media (max-width: 968px) {
  .hero .container {
    padding: 7rem 3rem 5rem 3rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .hero .container {
    padding: 6rem 2rem 4rem 2rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-keywords {
    gap: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* =========================
   ABOUT SECTION
========================= */

#about {
  padding-top: 7rem;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.6rem;
  max-width: 1000px;
}

/* =========================
   RESEARCH AREAS SECTION
========================= */

#research {
  background: rgba(42, 90, 122, 0.025);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.research-card {
  background: white;
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--sage);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.35s ease;
  will-change: transform;
}

.research-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Animated top accent line */
.research-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--sage), var(--ocean));
  transition: width 0.4s ease;
}

.research-card:hover {
  transform: translateY(-6px);
}

/* Animate line left to right */
.research-card:hover::before {
  width: 100%;
}

.research-card:hover::after {
  opacity: 1;
}

.research-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--forest-dark);
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.research-card:hover h3 {
  color: var(--ocean);
}

.research-card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.research-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.research-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  transition: transform 0.3s ease;
}

/* =========================
   PROJECTS SECTION
========================= */

#projects {
  padding: 3rem 2.25rem;
}

.project-container {
  max-width: 1400px;
  margin: 0 auto;
}

.project-header {
  padding: 2rem;
  /* max-width: 1000px; */
  /* margin: 0 auto; */
  text-align: center;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}

.project-title {
  font-size: 2.2rem;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.project-subtitle {
  opacity: 0.8;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.project-section {
  margin-top: 3rem;
}

#projects h4 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--forest-dark);
}

#projects h5 {
  font-size: 1.2rem;
  margin: 1.8rem 0;
}

#projects h6 {
  font-size: 1rem;
  margin: 1.2rem 0;
  color: var(--ocean);
}

.framework-image {
  text-align: center;
  margin: 2rem;
}

.framework-image img {
  width: 650px;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.framework-image p {
  font-size: 0.9rem;
  opacity: 0.75;
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.project-table th,
.project-table td {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.project-table thead {
  background: var(--ocean);
  color: white;
}

.project-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}

/* Make project table scrollable on small screens */
@media (max-width: 768px) {
  .project-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

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

.year-badge {
  background: var(--ocean);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.year-title {
  font-weight: 600;
}

.methodology-steps {
  counter-reset: step;
  list-style: none;
  margin: 0 1rem;
}

.methodology-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1rem;
}

.methodology-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--ocean);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 0.8rem;
}

.highlight-box {
  background: white;
  padding: 1.6rem 1.8rem;
  border-radius: 10px;
  margin: 1.8rem 0;
  border-left: 5px solid var(--ocean);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.highlight-box ul {
  margin: 0.6rem 0 0 1.2rem;
  padding-left: 0.5rem;
}

.highlight-box ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.formula {
  padding: 1rem;
  margin: 1rem 0;
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  text-align: center;
  background: #f8f9fa;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.clean-list {
  padding-left: 1.2rem;
  line-height: 1.6;
}

.quote-card {
  padding: 1.5rem;
  border-left: 4px solid var(--ocean);
  background: rgba(42, 90, 122, 0.05);
  margin-bottom: 2rem;
}

.quote-card-accent {
  border-left: 4px solid var(--terracotta);
}

.quote-card-accent-green {
  background: rgba(46, 204, 113, 0.1);
  border-left-color: #2ecc71;
}

.emphasis {
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(122, 155, 138, 0.08);
  margin: 2rem 0;
}

.emphasis ul {
  margin: 0 1.2rem;
}

.emphasis-accent {
  border-left: 4px solid var(--terracotta);
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.output-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border-top: 4px solid var(--terracotta);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .output-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .output-grid {
    grid-template-columns: 1fr;
  }
}

.roadmap-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roadmap-card {
  background: #f5f6f7;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  border-left: 6px solid var(--roadmap-color);
}

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

.year-pill {
  background: var(--roadmap-color);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.roadmap-title {
  margin: 0;
  font-size: 1.4rem;
  color: var(--forest-dark);
}

.roadmap-card p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

/* =========================
   TEAMS SECTION
========================= */

#team {
  background: rgba(122, 155, 138, 0.04);
}

.team-intro {
  margin: 0 0 3.5rem 0;
  line-height: 1.9;
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 900px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem;
}

.team-member {
  flex: 0 0 280px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.team-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--sage), var(--ocean));
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.team-member:hover .team-avatar {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.team-member:hover h3 {
  color: var(--ocean);
}

.team-member h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--forest-dark);
  transition: color 0.3s ease;
}

.role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 0.8rem;
}

.bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .team-member {
    flex: 0 0 260px;
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .team-member {
    flex: 0 0 220px;
    max-width: 220px;
  }

  .team-avatar {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .team-avatar {
    width: 130px;
    height: 130px;
  }
}

/* =========================
   PUBLICATIONS SECTION
========================= */

.publication {
  background: white;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--ocean);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.publication:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.publication h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest-dark);
  margin-bottom: 0.9rem;
  line-height: 1.45;
}

.publication .authors {
  color: var(--ocean);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.publication .journal {
  color: var(--charcoal);
  opacity: 0.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.publication .links {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.9rem;
}

.publication .links a:not(:last-child)::after {
  content: "•";
  margin: 0 0.75rem;
  color: var(--charcoal);
  opacity: 0.5;
}

.publication .links a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.publication .links a:hover {
  color: var(--forest-dark);
}

/* =========================
   CONTACT SECTION
========================= */

#contact {
  max-width: none;
  margin: 0;
  background: var(--deep-forest);
  color: rgba(255, 255, 255, 0.9);
  padding: 5rem 0 4rem 0;
}

#contact .contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

#contact h2 {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

/* Contact Info */

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: white;
}

.contact-info p {
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.contact-info a {
  color: var(--sand);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--terracotta);
}

.contact-info strong {
  display: block;
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: white;
}

/* Contact Form */

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:hover,
.contact-form textarea:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 2px rgba(200, 90, 63, 0.25);
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #b94e35;
}

/* =========================
   FOOTER
========================= */

footer {
  background: var(--deep-forest);
  text-align: center;
  padding: 3rem 1rem 3rem 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

footer p {
  margin: 0.4rem 0;
}

.footer-subtitle {
  opacity: 0.6;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Responsive */
@media (max-width: 968px) {
  .hero .container {
    padding: 6rem 3rem 4rem 3rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

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

  nav ul {
    gap: 1.5rem;
  }

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

@media (max-width: 640px) {
  .hero .container {
    padding: 5rem 2rem 3rem 2rem;
  }

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

  .hero-content .subtitle {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .project-showcase {
    padding: 2rem 1.5rem;
  }

  .project-meta {
    flex-direction: column;
    gap: 1rem;
  }
}
