/* Base Styles */
:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --primary: #00825c;
  --primary-foreground: #ffffff;
  --secondary: #f4f4f5;
  --secondary-foreground: #18181b;
  --muted: #f4f4f5;
  --muted-foreground: #767680;
  --accent: #22c55e;
  --accent-foreground: #18181b;
  --destructive: #ef4444;
  --destructive-foreground: #fafafa;
  --border: #e4e4e7;
  --input: #e4e4e7;
  --ring: #22c55e;
  --radius: 0.5rem;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* @media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #fafafa;
    --primary: #22c55e;
    --primary-foreground: #0a0a0a;
    --secondary: #27272a;
    --secondary-foreground: #fafafa;
    --muted: #27272a;
    --muted-foreground: #a1a1aa;
    --accent: #22c55e;
    --accent-foreground: #fafafa;
    --destructive: #7f1d1d;
    --destructive-foreground: #fafafa;
    --border: #27272a;
    --input: #27272a;
    --ring: #22c55e;
  }
} */

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

html {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

body {
  min-height: 100vh;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding: 2rem 0;
}

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

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--foreground);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: var(--background);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  text-decoration: none;
}

.desktop-nav {
  display: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.5rem;
}

.nav-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-link.active {
  color: var(--primary);
}

.mobile-nav-toggle button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--foreground);
  cursor: pointer;
}

.mobile-nav-toggle button:hover {
  background-color: var(--secondary);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 0.5rem 0;
  margin: 0.25rem 0;
  border-radius: var(--radius);
}

.mobile-menu .nav-link.active {
  background-color: var(--muted);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Footer */
footer {
  width: 100%;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1.5rem 0;
}

.copyright {
  text-align: center;
  font-size: 0.975rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.5rem;
  padding: 0 1rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-sm {
  height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-foreground);
  color: var(--primary);
  opacity: 1;
  text-decoration: none;
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  opacity: 1;
  text-decoration: none;
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border: none;
}

.btn-ghost:hover {
  background-color: var(--secondary);
  text-decoration: none;
}

/* Home Page */
.profile-header {
  padding: 1.5rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  margin-bottom: 3rem;
}

.profile-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-foreground);
}

.profile-header p {
  color: var(--primary-foreground);
  margin-bottom: 0;
}

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

.profile-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.image-card {
  width: 16rem;
  height: 16rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.profile-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.profile-title p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

.profile-bio p {
  margin-bottom: 1rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.social-section {
  padding: 1rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
}

.social-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.2s;
  text-decoration: none;
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  text-decoration: none;
}

@media (min-width: 768px) {
  .profile-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .profile-image {
    width: 33.333333%;
  }

  .profile-info {
    width: 66.666667%;
  }

  .social-links {
    justify-content: flex-start;
  }
}

/* Page Header */
.page-header {
  padding: 1.5rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.page-header p {
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Research Page */
.research-interests {
  margin-top: 1rem;
}

.research-interests h2 {
  color: #15803d;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.publications-section {
  margin-top: 2rem;
}

.publications-section h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.year-section {
  margin-bottom: 2rem;
}

.year-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #15803d;
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.publication-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.publication-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.publication-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dcfce7;
}

.publication-header h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.publication-authors {
  font-size: 1rem;
  color: var(--foreground);
}

.highlight-author {
  font-weight: bold;
  color: #d9534f;
}

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

.publication-content {
  padding: 1.5rem;
}

.publication-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.abstract-content,
.citation-content {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
}

.citation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.citation-header h5 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

pre {
  font-family: monospace;
  font-size: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem;
  background-color: var(--background);
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
}

/* Projects Page */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.project-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.project-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.project-image {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

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

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

.project-header {
  padding: 1.5rem;
  border-top: 1px solid #dcfce7;
}

.project-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.project-content {
  padding: 0 1.5rem;
  flex-grow: 1;
}

.project-footer {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem;
  border-top: 1px solid #dcfce7;
}

/* Experience Page */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.experience-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.experience-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.experience-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dcfce7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.experience-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

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

.experience-date {
  display: flex;
  align-items: center;
  color: #15803d;
  font-size: 0.875rem;
}

.experience-date i {
  margin-right: 0.25rem;
}

.experience-content {
  padding: 1rem 1.5rem;
}

.experience-description {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Education Page */
.tabs {
  margin-top: 2rem;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border: 1px solid #dcfce7;
  border-radius: var(--radius);
  overflow: hidden;
}

.tab-btn {
  padding: 0.75rem;
  background-color: var(--background);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

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

.tab-content {
  display: none;
  margin-top: 1.5rem;
}

.tab-content.active {
  display: block;
}

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

.education-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.education-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.education-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dcfce7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.education-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.education-date {
  display: flex;
  align-items: center;
  color: #15803d;
  font-size: 0.875rem;
}

.education-date i {
  margin-right: 0.25rem;
}

.education-content {
  padding: 1rem 1.5rem;
}

.education-achievements {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
}

.education-achievements h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.education-achievements ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.certificates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.certificate-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.certificate-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.certificate-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dcfce7;
}

.certificate-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.certificate-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.certificate-content {
  padding: 1rem 1.5rem;
}

.certificate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.certificate-link {
  color: var(--primary);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
}

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

/* Datasets Page */
.datasets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.dataset-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.dataset-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dataset-image {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

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

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

.dataset-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dcfce7;
  border-top: 1px solid #dcfce7;
}

.dataset-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dataset-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.dataset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.dataset-content {
  padding: 1rem 1.5rem;
  flex-grow: 1;
}

.dataset-size {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.dataset-papers {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
}

.dataset-papers-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.dataset-paper-link {
  color: black;
  text-decoration: none;
}

.dataset-papers ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.dataset-footer {
  padding: 1.5rem;
  border-top: 1px solid #dcfce7;
}

/* CV Page */
.cv-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  margin-bottom: 2rem;
}

.cv-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.cv-header p {
  font-size: 1.125rem;
  color: #15803d;
  margin-bottom: 0;
}

.cv-preview-card {
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.cv-preview {
  position: relative;
  width: 100%;
}

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

.cv-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cv-section {
  padding: 1.5rem;
  background-color: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #dcfce7;
}

.cv-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cv-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cv-section-grid h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #15803d;
}

.cv-section-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-section-list h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.cv-section-list p {
  font-size: 0.875rem;
  color: #15803d;
  margin-bottom: 0.5rem;
}

.cv-section-list ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.cv-publications {
  font-size: 0.875rem;
}

.cv-publications p {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .cv-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

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

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

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

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

/* Responsive Adjustments */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 3rem;
  }
}