/* ============================
   HERO
============================ */
.greeting-hero {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 70px 20px 80px;
}

.greeting-hero h1 {
  font-size: 42px;
  letter-spacing: 2px;
}

/* ============================
   MAIN CONTENT
============================ */
.greeting-section {
  max-width: 1100px;
  position: relative;
  margin: 10px auto;
  padding: 0 20px;
}

.greeting-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.greeting-photo img {
  width: 360px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.greeting-message {
  padding-top: 100px;
  flex: 1;
}

.greeting-message h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 5px solid #111;
  padding-left: 12px;
}

.greeting-message p {
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
}

.ceo-name {
  font-weight: bold;
  margin-top: 20px;
  font-size: 18px;
}

.name{
  position: absolute;
  bottom: -50px;
  left: 35%;
}

.name img{
  width: 100%;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {
  .greeting-photo img {
    width: 100%;
  }

    .greeting-message{
    padding-top: 10px;
  }

  .greeting-message h2 {
    font-size: 24px;
  }

  .greeting-hero h1 {
    font-size: 32px;
  }

  .name{
  position: absolute;
  bottom: -100px;
  left: 10%;
}

.name img{
  width: 100%;
}
}
