:root {
  --bg-color: #f9fafb;
  --text-color: #1f2937;
  --primary-color: #6366f1;
  --secondary-color: #ec4899;
  --accent-color: #14b8a6;
  --light-gray: #e5e7eb;
  --medium-gray: #9ca3af;
  --dark-gray: #4b5563;
  --white: #ffffff;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans 3', sans-serif;
  
  --transition-short: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-long: 0.8s ease;
  
  --z-nav: 100;
  --z-cursor: 1000;
  --z-noise: -1;
}

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

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-noise);
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: var(--z-cursor);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, border 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: difference;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: 1.5rem 0;
  transition: background-color var(--transition-short), padding var(--transition-short);
}

header.scrolled {
  background-color: rgba(249, 250, 251, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-short);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.bar {
  width: 30px;
  height: 2px;
  background-color: var(--text-color);
  transition: transform var(--transition-short), opacity var(--transition-short);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.1), transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(236, 72, 153, 0.1), transparent 40%);
  z-index: -1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--medium-gray);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1.5s ease forwards;
}


/* About Section */
.about {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.blob {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.profile-image {
  position: relative;
  width: 100%;
  padding-bottom: 0%;
  border-radius: 0%;
  overflow: hidden;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Crect width='200' height='200' fill='%23d1d5db'/%3E%3Cpath d='M100,60 C86,60 75,71 75,85 C75,99 85,110 100,110 C115,110 125,99 125,85 C125,71 114,60 100,60 Z M100,120 C75,120 50,134 50,160 L150,160 C150,134 125,120 100,120 Z' fill='%239ca3af'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.skills span {
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: background-color var(--transition-short), color var(--transition-short);
}

.skills span:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Work Section */
.work {
  padding: 6rem 0;
  background-color: var(--bg-color);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.work-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition-short), box-shadow var(--transition-short);
  padding: 1.5rem;
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.work-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  margin-bottom: 1.5rem;
  background-color: var(--bg-color);
}

.work-icon {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
  color: var(--white);
}

.work-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.work-item p {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.publication {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more span {
  transition: transform var(--transition-short);
}

.read-more:hover span {
  transform: translateX(5px);
}

.cta-section {
  padding: 3rem 0 5rem;
  text-align: center;
  background-color: var(--bg-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-container {
  margin-top: 3rem;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: transform var(--transition-short), box-shadow var(--transition-short);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* View All section styles */
.view-all-section {
  padding: 2rem 0 5rem;
  text-align: center;
  background-color: var(--white);
}

.view-all-button-container {
  margin-top: 1rem;
}

/* Podcasts Section */
.podcasts-section {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.podcast-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
}

.podcast-image {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.podcast-waveform {
  width: 100%;
  height: 100%;
  stroke: var(--dark-gray);
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    stroke-dasharray: 0 16 0 16;
  }
  50% {
    stroke-dasharray: 8 8 8 8;
  }
}

.podcast-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.podcast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.podcast-meta span {
  color: var(--medium-gray);
  font-size: 0.9rem;
  position: relative;
}

.podcast-meta span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -10px;
}

.podcast-content p {
  color: var(--dark-gray);
  margin-bottom: 1.2rem;
}

.podcast-links {
  display: flex;
  gap: 1rem;
}

.podcast-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition-short);
}

.podcast-link:hover {
  color: var(--secondary-color);
}

.podcast-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--bg-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

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

.contact-item svg {
  color: var(--primary-color);
}

.contact-item a, 
.contact-item span {
  color: var(--dark-gray);
  transition: color var(--transition-short);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  transition: all var(--transition-short);
}

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

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

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

.form-group label {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  background-color: var(--white);
  transition: border-color var(--transition-short);
  resize: none;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-short), box-shadow var(--transition-short);
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.submit-button svg {
  width: 18px;
  height: 18px;
}

/* Footer */
footer {
  background-color: var(--text-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo .logo {
  font-size: 2rem;
}

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

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-short);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Animations */
.reveal-text {
  position: relative;
  overflow: hidden;
}

.reveal-text::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateX(0);
  animation: revealText 1.5s var(--transition-medium) forwards;
}

@keyframes revealText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-1::after {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-2::after {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-3::after {
  animation-delay: 0.6s;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* Page header for inner pages */
.page-header {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), 
              radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.1), transparent 40%),
              radial-gradient(circle at 10% 90%, rgba(236, 72, 153, 0.1), transparent 40%);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Hero intro paragraph */
.hero-intro {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  max-width: 600px;
}

.hero-buttons {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

/* CV Page Styles */
.cv-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.cv-content {
  margin-bottom: 4rem;
}

.cv-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.cv-item:last-child {
  border-bottom: none;
}

.cv-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.cv-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.cv-item p {
  color: var(--dark-gray);
  line-height: 1.7;
}

.references {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.references span {
  padding: 0.5rem 1.5rem;
  background-color: var(--light-gray);
  border-radius: 50px;
  font-weight: 500;
  color: var(--dark-gray);
}

/* Writing Page Styles */
.writing-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.writing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.writing-item {
  padding: 1.5rem;
  background-color: var(--bg-color);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform var(--transition-short), box-shadow var(--transition-short);
}

.writing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
}

.writing-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.writing-item p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Content Marketing Page Styles */
.content-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.content-group {
  margin-bottom: 3rem;
}

.content-group h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.content-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--bg-color);
  border-radius: 8px;
  transition: background-color var(--transition-short);
}

.content-item:hover {
  background-color: var(--light-gray);
}

.content-item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--text-color);
}

.content-item a {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.5rem;
}

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

/* PR Page Styles */
.pr-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.pr-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pr-item {
  padding: 1.5rem;
  background-color: var(--bg-color);
  border-radius: 8px;
  transition: background-color var(--transition-short);
}

.pr-item:hover {
  background-color: var(--light-gray);
}

.pr-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.pr-item a {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 1.4;
}

.pr-item a:hover {
  text-decoration: underline;
}

.pr-item p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Services Page Styles */
.services-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.services-intro {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 600;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-item {
  padding: 1rem 1.5rem;
  background-color: var(--bg-color);
  border-radius: 8px;
  transition: transform var(--transition-short), box-shadow var(--transition-short);
}

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

.service-item span {
  font-weight: 500;
  color: var(--dark-gray);
}

.services-note {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--dark-gray);
}

.services-signature {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.services-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-short);
}

.service-link:hover {
  color: var(--secondary-color);
}

.service-divider {
  color: var(--medium-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .image-container {
    max-width: 250px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  nav ul {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .podcast-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .podcast-image {
    width: 100%;
    height: 150px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .page-header h1 {
    font-size: 3rem;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .writing-grid {
    grid-template-columns: 1fr;
  }
  
  .cv-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .page-header {
    min-height: 250px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .services-intro {
    font-size: 1.3rem;
  }
  
  .services-signature {
    font-size: 1.8rem;
  }
}

/* Customize Work Item Background Colors */
.work-item:nth-child(1) .work-image {
  background-color: var(--bg-color);
}

.work-item:nth-child(2) .work-image {
  background-color: var(--bg-color);
}

.work-item:nth-child(3) .work-image {
  background-color: var(--bg-color);
}

.work-item:nth-child(4) .work-image {
  background-color: var(--bg-color);
}
