/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  color: rgb(96, 125, 138);
}

h2,
h3 {
  border-bottom: 2px solid rgb(96, 125, 138);
  padding-bottom: 5px;
  font-weight: normal;
}

h4 {
  font-weight: normal;
}

h5 {
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(96, 125, 138);
  padding-bottom: 3px;
}

p {
  margin-bottom: 1.2em;
  line-height: 1.5;
}

/* Mathematical Equations */
.math-equation {
  text-align: center;
  margin: 15px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid rgb(96, 125, 138);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.math-equation p {
  margin: 5px 0;
  color: #555;
  font-size: 0.9em;
  line-height: 1.4;
}

/* Comparison Grids and Cards */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.comparison-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background-color: #fafafa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.comparison-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.comparison-card h5 {
  margin-top: 0;
  color: rgb(96, 125, 138);
  border-bottom: 2px solid rgb(96, 125, 138);
  padding-bottom: 5px;
  font-size: 1.1em;
}

.comparison-card ul {
  margin: 10px 0;
  padding-left: 0;
}

.comparison-card li {
  margin: 8px 0;
  padding-left: 15px;
  position: relative;
}

/* .comparison-card li::before {
  content: "•";
  color: rgb(96, 125, 138);
  position: absolute;
  left: 0;
  top: 0;
} */

/* Highlight Boxes */
.highlight-box {
  background-color: #e8f4f8;
  border: 1px solid #bee5eb;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.highlight-box p {
  margin-bottom: 10px;
}

.highlight-box ul {
  margin: 10px 0;
}

/* Key Insights */
.key-insight {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}

.key-insight::before {
  content: "💡 ";
  font-weight: bold;
  font-size: 1.2em;
}

.key-insight strong {
  color: #856404;
}

/* Summary Boxes */
.summary {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.summary h4 {
  margin-top: 0;
  color: rgb(96, 125, 138);
  border-bottom: 2px solid rgb(96, 125, 138);
  padding-bottom: 5px;
}

/* Workflow Steps */
.workflow-step {
  background-color: #f8f9fa;
  border-left: 4px solid rgb(96, 125, 138);
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.workflow-step h6 {
  margin: 0 0 15px 0;
  color: rgb(96, 125, 138);
  font-size: 1.1em;
  font-weight: bold;
  border-bottom: 1px solid rgb(96, 125, 138);
  padding-bottom: 5px;
}

.workflow-step p {
  margin: 10px 0;
  line-height: 1.6;
}

.workflow-step ul {
  margin: 10px 0;
  padding-left: 20px;
}

.workflow-step li {
  margin: 5px 0;
  list-style-type: disc;
}

/* Header Styles */
header {
  background-color: transparent;
  color: #fff;
  padding: 0px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  padding-top: 0px;
  position: relative;
}

.header-left {
  text-align: left;
  margin-bottom: 5px;
  margin-top: 5px;
  flex: 2;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-right: 20px;
  flex: 1;
}

header h1 {
  font-size: 2.2rem;
  color: #333;
  margin: 0 0 5px 0;
  padding: 0;
  margin-left: 20px;
  font-weight: bold;
}

.profile {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  margin-right: 40px;
}

.role {
  color: #555;
  margin: 0;
  text-align: left;
  font-weight: normal;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-left: 20px;
}

/* Contact Information */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px;
  color: #333;
  justify-content: end;
  align-items: center;
  width: auto;
}

.contact-info a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 6px;
  transition: transform 0.2s ease;
  justify-content: flex-start;
  white-space: nowrap;
  color: rgb(96, 125, 138);
  transition: color 0.2s ease;
}

.contact-info a .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact-info a:hover .contact-label {
  color: #000000;
}

.contact-info a svg {
  fill: rgb(96, 125, 138);
  transition: fill 0.2s ease;
  width: 18px;
  height: 18px;
  min-width: 18px;
  vertical-align: middle;
}

.contact-info a:hover .contact-label {
  color: #000;
}

.contact-info a:hover svg {
  fill: #000000;
}

.contact-info a[aria-label="GitHub"] svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.contact-label {
  font-size: 1rem;
  white-space: nowrap;
}

/* Container Styles */
.main-container,
.info-container,
.link-container,
.projects-container,
.portfolio-container,
.article-container {
  max-width: 1500px;
  margin: 7px auto;
  padding: 12px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Info Columns */
.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-column {
  flex: 1;
  margin: 10px;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
  padding: 0px;
}

/* Link Container */
.link-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.link-column {
  flex: 1;
  margin: 0px;
  text-align: center;
}

.link-column a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
}

.link-container a i {
  margin-right: 10px;
}

.section-header h2,
.info-column h2 {
  font-size: 1.3em;
  color: rgb(96, 125, 138);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid rgb(96, 125, 138);
}

/* Lists */
ul,
ol {
  padding: 0;
}

ul li {
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 15px;
}

ol {
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 15px;
}

/* Accordion Styles */
.accordion {
  position: relative;
  font-size: 16px;
}

.accordion.active .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.arrow {
  display: inline-block;
  position: absolute;
  right: 0;
  font-size: 0.65em;
}

/* Project Styles */
.project-columns {
  display: flex;
  flex-wrap: wrap;
}

.project-column {
  flex-basis: calc(25% - 5px);
  padding: 2px;
  box-sizing: border-box;
}

.project-column ul {
  list-style-type: none;
  margin: 0;
}

.project-column ul li {
  margin-bottom: 30px;
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: left;
  text-align: left;
}

.project-column img {
  width: 100%;
  height: 200px;
  margin-bottom: 0px;
}

.project-column strong {
  font-size: 1.1em;
}

.project-column ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-column ul li:hover {
  background-color: #ccd4d8;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 5px;
}

.portfolio-item strong,
.article-column strong {
  font-size: 1.12em;
  font-weight: 600;
}

.portfolio-item,
.article-column {
  font-size: 0.9em;
  line-height: 1.5;
}

/* Article Container */
.article-container h1,
.article-container h2,
.article-container h3,
.article-container h4,
.article-container h5,
.article-container h6,
.article-container p,
.article-container li,
.article-container table,
.article-container ul {
  margin-left: 20px;
  margin-right: 20px;
}

/* Special handling for comparison elements */
.article-container .comparison-grid,
.article-container .comparison-card,
.article-container .highlight-box,
.article-container .key-insight,
.article-container .math-equation,
.article-container .summary,
.article-container .workflow-step {
  margin-left: 20px;
  margin-right: 20px;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
}

/* Responsive Elements */
.responsive-math {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  text-align: left;
  font-size: 1rem;
  margin: 1em 0;
  padding: 0.5em;
  box-sizing: border-box;
}

.responsive-table-container {
  display: block;
  overflow-x: auto;
  white-space: wrap;
  margin: 1em 0;
  box-sizing: border-box;
}

.responsive-code-container {
  display: block;
  overflow-x: auto;
  white-space: nowrap;
  margin: 1em 0;
  box-sizing: border-box;
}

.responsive-img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Table Styles */
table {
  border-collapse: collapse;
  width: 90%;
  margin: 20px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  font-size: 1rem;
}

th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: rgb(96, 125, 138);
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f0f8ff;
}

/* Portfolio Styles */
.portfolio-sections {
  display: flex;
  gap: 20px;
  margin-left: 0px;
}

.portfolio-sections h2 {
  margin-left: 10px;
  margin-right: 10px;
}

.section-column {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

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

.portfolio-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-item,
.article-column {
  margin-bottom: 0px;
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: left;
  text-align: left;
  margin-left: 15px;
}

.article-column .article-date {
  display: block;
  font-size: 0.8em;
  color: #888;
  font-style: italic;
  text-align: right;
  margin-bottom: 3.5px;
  margin-right: 10px;
}

.portfolio-item .article-date {
  display: block;
  font-size: 0.8em;
  color: #888;
  font-style: italic;
  text-align: right;
  margin-bottom: 3.5px;
  margin-right: 10px;
}

.portfolio-item a:hover,
.article-column a:hover {
  background-color: #ccd4d8;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 5px;
}

.portfolio-item img,
.article-column img {
  width: 100%;
  height: 200px;
  margin-bottom: 0px;
}

.portfolio-item a,
.article-column a {
  text-decoration: none;
  color: inherit;
  padding: 5px;
}

.portfolio-item strong,
.article-column strong {
  display: block;
  margin: 10px 0;
}

.portfolio-item p,
.article-column p {
  margin: 10px 0 0;
  color: #666;
}

/* View All Button */
.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 30px;
}

.view-all-btn {
  padding: 10px 24px;
  color: rgb(96, 125, 138);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-align: center;
  font-size: 1em;
  font-weight: bold;
}

.view-all-btn i {
  margin-left: 8px;
  font-size: 0.9em;
}

/* Last Updated Section */
.last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 20px;
}

.last-updated-label {
  margin-right: 5px;
  font-weight: 500;
}

.last-updated time {
  font-style: italic;
}

/* Sticky Header */
#sticky-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background-color: #f5f5f5;
}

/* Back to Top Button */
#backToTopButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1000;
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1.2em;
}

#backToTopButton:hover {
  background-color: #555;
}

/* Link Styles */
body a {
  color: rgb(96, 125, 138);
}

body a:hover {
  color: #000000;
}

/* SVG Styles */
svg {
  fill: rgb(96, 125, 138);
}

svg:hover {
  fill: rgb(0, 0, 0);
}

/* Dark Mode Toggle */
.switch {
  position: fixed;
  top: 20px;
  right: 20px;
}

.switch input {
  display: none;
}

.switch-label {
  background-color: #ccc;
  width: 40px;
  height: 20px;
  border-radius: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
  position: relative;
}

.switch-label:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.sun-icon,
.moon-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s ease;
}

.sun-icon {
  left: 5px;
  opacity: 0;
}

.moon-icon {
  right: 5px;
  opacity: 1;
}

.switch input:checked + .switch-label {
  background-color: #333;
}

.switch input:checked + .switch-label:before {
  transform: translateX(20px);
}

.switch input:checked + .switch-label .sun-icon {
  opacity: 1;
}

.switch input:checked + .switch-label .moon-icon {
  opacity: 0;
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #1e1e1e;
  color: white;
}

header.dark-mode {
  background-color: #1e1e1e;
}

header h1.dark-mode {
  color: #fff;
}

.dark-mode svg {
  fill: rgb(207, 216, 220);
}

.dark-mode svg:hover {
  fill: #ffffff;
}

.main-container.dark-mode,
.info-container.dark-mode,
.link-container.dark-mode,
.projects-container.dark-mode,
.portfolio-container.dark-mode,
.article-container.dark-mode {
  background-color: #29363d;
  color: #fff;
}

.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
  color: rgb(207, 216, 220);
}

.dark-mode h1 {
  color: rgb(255, 255, 255);
}

.dark-mode h2,
.dark-mode h3 {
  color: rgb(207, 216, 220);
  border-bottom: 2px solid rgb(207, 216, 220);
}

.dark-mode h5 {
  border-bottom: 1px solid rgb(207, 216, 220);
}

/* Dark Mode for Workflow Steps */
.dark-mode .workflow-step {
  background-color: #2a3a4a;
  border-left-color: rgb(207, 216, 220);
  color: #e0e0e0;
}

.dark-mode .workflow-step h6 {
  color: rgb(207, 216, 220);
  border-bottom-color: rgb(207, 216, 220);
}

.dark-mode .workflow-step p {
  color: #e0e0e0;
}

.dark-mode .workflow-step strong {
  color: rgb(207, 216, 220);
}

body.dark-mode a {
  color: rgb(207, 216, 220);
}

body.dark-mode a:hover {
  color: #ffffff;
}

/* Dark Mode for Comparison Elements */
.dark-mode .comparison-card {
  background-color: #3a4a54;
  border-color: #5a6a74;
}

.dark-mode .comparison-card h5 {
  color: rgb(207, 216, 220);
  border-bottom-color: rgb(207, 216, 220);
}

.dark-mode .comparison-card li::before {
  color: rgb(207, 216, 220);
}

.dark-mode .highlight-box {
  background-color: #2a4a5a;
  border-color: #4a6a7a;
  color: #e0e0e0;
}

.dark-mode .key-insight {
  background-color: #4a4a2a;
  border-color: #6a6a4a;
  color: #e0e0e0;
}

.dark-mode .key-insight strong {
  color: #ffd700;
}

.dark-mode .math-equation {
  background-color: #2a3a4a;
  border-left-color: rgb(207, 216, 220);
  color: #e0e0e0;
}

.dark-mode .math-equation p {
  color: #cccccc;
}

.dark-mode .summary {
  background-color: #2a3a4a;
  border-color: #4a5a6a;
  color: #e0e0e0;
}

.dark-mode .summary h4 {
  color: rgb(207, 216, 220);
  border-bottom-color: rgb(207, 216, 220);
}

/* Dark Mode Table Styles */
.dark-mode table {
  background-color: #2a3a4a;
}

.dark-mode th {
  background-color: #3a4a5a;
  color: rgb(207, 216, 220);
  border-color: #5a6a7a;
}

.dark-mode td {
  color: #e0e0e0;
  border-color: #5a6a7a;
}

.dark-mode tr:nth-child(even) {
  background-color: #3a4a5a;
}

.dark-mode tr:hover {
  background-color: #4a5a6a;
}

/* Dark Mode Text Colors */
body.dark-mode .contact-info a .contact-label {
  color: rgb(207, 216, 220);
}

body.dark-mode .contact-info a:hover .contact-label {
  color: #ffffff;
}

/* SVG Color in Dark Mode */
body.dark-mode .contact-info a svg {
  fill: rgb(207, 216, 220);
}

body.dark-mode .contact-info a:hover svg {
  fill: #ffffff;
}

/* Apply similar treatment to other SVGs in dark mode for consistency */
body.dark-mode svg {
  fill: rgb(207, 216, 220);
}

body.dark-mode svg:hover {
  fill: #ffffff;
}

.dark-mode .portfolio-item,
.dark-mode .article-column {
  color: #000000;
}

.dark-mode .section-column h3 {
  border-bottom-color: #fff;
}

.dark-mode .portfolio-item p,
.dark-mode .article-column p {
  color: #ccc;
}

.dark-mode .portfolio-item a:hover,
.dark-mode .article-column a:hover {
  background-color: #555;
  color: #fff;
}

#disqus_thread {
  margin-top: 80px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

/* Dark mode for Disqus */
.dark-mode #disqus_thread {
  border-top-color: #444;
}

/* Mobile customization for Disqus */
@media (max-width: 768px) {
  #disqus_thread {
    margin-top: 30px;
    padding-top: 20px;
  }
}

/* Media Queries */
@media screen and (max-width: 1300px) {
  .project-columns {
    justify-content: left;
  }

  .project-column {
    flex-basis: calc(33% - 5px);
  }

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

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

@media screen and (max-width: 1050px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr);
  }

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

@media screen and (max-width: 1000px) {
  .project-columns {
    justify-content: left;
  }

  .project-column {
    flex-basis: calc(50% - 20px);
  }

  .info-column {
    flex-basis: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  /* Responsive Comparison Grid */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px 0;
  }

  .comparison-card {
    padding: 15px;
    margin: 0;
    overflow-x: auto;
  }

  .math-equation {
    padding: 10px;
    margin: 10px 0;
    font-size: 0.85em;
    overflow-x: auto;
    white-space: nowrap;
    text-align: left;
  }

  .highlight-box,
  .key-insight,
  .summary {
    padding: 15px;
    margin: 15px 0;
    overflow-x: auto;
  }

  /* Switch to 2 columns on medium screens */
  .contact-info {
    grid-template-columns: repeat(2, auto);
    gap: 12px 20px;
    margin-bottom: 10px;
  }

  .header-left {
    flex: 1 0 100%;
    margin-bottom: 15px;
  }

  .header-right {
    justify-content: flex-start;
    margin-left: 20px;
    flex-wrap: wrap;
    width: 100%;
  }

  .link-column {
    font-size: 0.95rem;
  }

  .contact-label {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 600px) {
  .project-column {
    flex-basis: calc(100% - 20px);
  }

  .info-column {
    flex-basis: calc(100% - 20px);
  }

  .link-column {
    flex-basis: calc(50% - 20px);
  }
}

@media screen and (max-width: 568px) {
  .portfolio-sections {
    flex-direction: column;
  }

  .section-column {
    flex: 0 0 100%;
  }

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

  .portfolio-grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .contact-info {
    gap: 15px;
  }

  .contact-info a svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .contact-label {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-info {
    grid-template-columns: repeat(2, auto);
    gap: 15px 12px;
    justify-content: start;
    width: 100%;
  }

  header h1 {
    font-size: 1.8rem;
  }

  .role {
    font-size: 0.95rem;
  }

  .link-column {
    font-size: 0.9rem;
  }

  /* Smaller spacing for mobile */
  .comparison-grid {
    margin: 10px 0;
    gap: 10px;
  }

  .comparison-card {
    padding: 12px;
    margin: 0;
  }

  .math-equation {
    padding: 8px;
    font-size: 0.8em;
    margin: 8px 0;
    overflow-x: auto;
    white-space: nowrap;
    text-align: left;
  }

  .highlight-box,
  .key-insight,
  .summary {
    padding: 12px;
    margin: 12px 0;
  }

  .workflow-step {
    padding: 12px;
    margin: 12px 0;
  }

  .workflow-step h6 {
    font-size: 1em;
    margin-bottom: 10px;
  }
}

/* Additional responsive adjustments for very small screens */
@media screen and (max-width: 340px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .contact-label {
    font-size: 0.85rem;
  }
}
