body {
  margin: 0;
  font-family: sans-serif;
  background-color: #ffffff;
}

.top-bar {
  background-color: #f5f5dc; 
  padding: 15px 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr); 
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar .me {
  grid-column: 2; 
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
}

.top-bar .right-links {
  grid-column: 9 / span 4; 
  display: flex;
  justify-content: space-between;
}

.top-bar a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s;
}

.top-bar a:hover {
  background-color: #ddd;
  border-radius: 6px;
}

ssection {
  background-color: #2e8b57; 
  color: white;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

section img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 8px;
}

section h2 {
  text-align: center;
}


h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #444;
}


#me {
  height: 40vh; 
  background-color: #2e8b57; 
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;
}


#me img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 15px 0;
}

#gray-space {
  background-color: #ccc; 
  padding: 50px;
  text-align: center;
}

#gray-space {
  background-color: #ccc;
  padding: 60px 20px;
  text-align: center;
}

#gray-space h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}


.custom-btn {
  background-color: #333;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
  background-color: #555;
  transform: scale(1.05);
  cursor: pointer;
}

  .text-image-wrapper {
    max-width: 100%;
    display: inline-block; 
    text-align: center;
  }

  .text-image-wrapper h4 {
    margin-bottom: 0.5rem;
    max-width: 100%; 
    word-wrap: break-word;
  }