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

body {
  font-family: Arial, sans-serif;
  background-color: #e8e8e8;
}

.header-custom {
  background-color: #0d7a7a;
  padding: 20px 0;
}

.header-custom .navbar {
  padding: 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.navbar-nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: white !important;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.7;
}

.main-content {
  flex: 1;
  max-width: 600px;
}

.main-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.main-section p {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.btn-1 {
  display: inline-block;
  background-color: #005461;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 20px;
  margin-bottom: 60px;
  transition: transform 0.2s;
}

.btn-1:hover {
  background-color: #005461;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.skills-section {
  margin-top: 30px;
}

.skills-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.skill-category {
  margin-bottom: 20px;
}

.skill-category h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0d7a7a;
  margin-bottom: 10px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background-color: #0d7a7a;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background-color: #095c5c;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(13, 122, 122, 0.3);
}

.headshot {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.headshot img {
  width: 100%;
  max-width: 470px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-section {
  display: flex;
  justify-content: center; /* Changed from space-between */
  align-items: flex-start;
  padding: 0 100px;
  gap: 50px; /* Adjust this to control spacing between left and right */
  max-width: 1400px; /* Add max-width to contain the section */
  margin: 50px auto;
}
