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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    linear-gradient(rgba(15, 25, 28, 0.78), rgba(15, 25, 28, 0.78)),
    url("../images/background.jpg") center/cover no-repeat;
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 8% 80px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 70px;
  align-items: center;
}

.left-content {
  min-width: 0;
  max-width: 560px;
}

.logo-box {
  width: 230px;
  height: 118px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  margin-bottom: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #263238;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 999px;
  margin-bottom: 38px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #39b883;
  border-radius: 50%;
  display: inline-block;
}

.eyebrow {
  color: #6ff0b6;
  letter-spacing: 5px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 25px;
  word-break: normal;
}

h1 span {
  color: #55d686;
  display: block;
  max-width: 100%;
}

.description {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: #ffffff;
}

.info-card {
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2b2d;
  border-radius: 28px;
  padding: 42px 38px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 28px solid rgba(85, 214, 134, 0.12);
  border-radius: 50%;
  top: -62px;
  right: -42px;
}

.info-card::after {
  content: "YCP";
  position: absolute;
  right: 25px;
  bottom: 28px;
  font-size: 70px;
  font-weight: 800;
  color: rgba(85, 214, 134, 0.07);
  pointer-events: none;
}

.info-card h2 {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.info-card .intro {
  color: #5f6d72;
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #009b60;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 4px;
}

.value {
  font-size: 15px;
  line-height: 1.6;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1f2b2d;
  background: rgba(0, 155, 96, 0.06);
  border: 1px solid rgba(0, 155, 96, 0.18);
  border-radius: 14px;
  padding: 13px 16px;
  transition: 0.25s ease;
}

.contact-button:hover {
  background: rgba(0, 155, 96, 0.12);
  transform: translateY(-1px);
}

.contact-action {
  font-size: 11px;
  color: #009b60;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: nowrap;
}

.footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
  .page-wrapper {
    padding: 40px 6% 80px;
  }

  .container {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 720px;
  }

  .left-content {
    max-width: 100%;
    text-align: center;
  }

  .logo-box {
    margin-left: auto;
    margin-right: auto;
  }

  .description {
    margin-left: auto;
    margin-right: auto;
  }

  .info-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .page-wrapper {
    padding: 30px 18px 80px;
    align-items: flex-start;
  }

  .container {
    gap: 35px;
  }

  .logo-box {
    width: 190px;
    height: 98px;
    border-radius: 16px;
  }

  .status-pill {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 64px);
  }

  .description {
    font-size: 16px;
  }

  .info-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .info-card h2 {
    font-size: 25px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .label {
    padding-top: 0;
  }

  .contact-button {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer {
    font-size: 11px;
    line-height: 1.5;
  }
}