.cv-page {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.cv-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  animation: slideUp 0.6s ease;
}

.cv-page h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.5rem;
  animation: slideUp 0.6s ease;
}

.cv-page h3 {
  animation: slideUp 0.6s ease;
  font-size: 1.5rem;
}

.cv-page p {
  line-height: 1.6;
  animation: fadeIn 0.8s ease;
}

.cv-page a {
  color: #00bfff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.cv-page a:hover {
  color: #0185b0;
}

#education {
  padding: 2rem;
  border-radius: 8px;
}

#experience {
  padding: 2rem;
  border-radius: 8px;
  animation: fadeIn 0.8s ease;
}

#experience .experience-item:not(:first-child) {
  padding: 1rem 0;
}

#experience .experience-item:not(:last-child) {
  border-bottom: 1px dashed #444;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.title-row h3 {
  margin: 0;
  flex: 1;
  padding-bottom: 0.75rem;
}

.title-row .date {
  font-size: 1rem;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 500;
}

.company {
  color: #00bfff;
  font-size: 1.2rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

#skills {
  padding: 2rem;
  border-radius: 8px;
}

#languages {
  padding: 2rem;
  border-radius: 8px;
}

#interests {
  padding: 2rem;
  border-radius: 8px;
}

#hiring {
  margin-top: 6rem;
  font-size: 2rem;
  text-align: center;
}

#contact {
  margin-top: 2rem;
  text-align: center;
}

#contact p {
  font-size: 1.5rem;
}

#contact a {
  color: #00bfff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

#contact a:hover {
  color: #0185b0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .cv-page {
    padding: 2rem 1rem;
  }

  .cv-page h1 {
    font-size: 1.5rem;
  }

  .cv-page h2 {
    font-size: 1.2rem;
  }

  .cv-page h3 {
    font-size: 1rem;
  }

  .company {
    font-size: 1rem;
  } 
}
