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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 0 20px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: url("bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 0;
}

.header-container {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 80px;
}

.logo,
.kim66-logo {
  width: 400px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

.logo-divider {
  width: 3px;
  height: 75px;
  background-color: #fff;
}

.home-button {
  padding: 12px 24px;
  border-radius: 15px;
  border: 4px solid #fff;
  background: linear-gradient(90deg, #fff 0%, #fed187 50%, #fff 100%);
  filter: blur(0px);
  color: #b21c24;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  height: fit-content;
}

.bottom-right-button {
  margin-top: 50px;
  padding: 20px 40px;
  border-radius: 10px;
  border: 2px solid #fff;
  background: rgba(0, 79, 255, 0.8);
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  display: inline-block;
  align-self: flex-end;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.bottom-right-button:hover {
  transform: scale(1.1);
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  align-items: flex-end;
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-section {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 40px 0 40px;
  min-height: 85vh;
  padding-bottom: 0;
  margin-bottom: 0;
}

.main-image {
  height: 85vh;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 0;
}

.content-section {
  width: auto;
  max-width: 800px;
  min-height: 172px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: 5px;
  text-transform: capitalize;
  margin-bottom: 25px;
  white-space: normal;
  word-wrap: break-word;
}

.content {
  color: #e1e1e1;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 2.8px;
  text-transform: capitalize;
  text-align: justify;
}

.content p {
  margin: 0;
}

.highlight {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: 2.8px;
  text-transform: capitalize;
}

/* Responsive Design */
@media (max-width: 2000px) {
  .main-image {
    height: 80vh;
  }

  .image-section {
    min-height: 80vh;
  }

  .content-section {
    max-width: 750px;
    padding: 45px 35px;
  }

  .title {
    font-size: 30px;
    letter-spacing: 4.5px;
    margin-bottom: 22px;
  }

  .content {
    font-size: 17px;
    letter-spacing: 2.5px;
  }

  .highlight {
    font-size: 17px;
    letter-spacing: 2.5px;
  }
}

@media (min-width: 1301px) and (max-width: 1728px) {
  .main-image {
    height: 90vh;
  }

  .image-section {
    min-height: 90vh;
  }

  .content-section {
    max-width: 750px;
    padding: 45px 35px;
  }

  .title {
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }

  .content {
    font-size: 16px;
    letter-spacing: 2.2px;
  }

  .highlight {
    font-size: 16px;
    letter-spacing: 2.2px;
  }
}

@media (max-width: 1300px) {
  body {
    padding: 0 15px;
    align-items: flex-start;
    min-height: 100vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .header-container {
    top: 15px;
    left: 15px;
    right: 15px;
    height: 70px;
  }

  .logo-container {
    gap: 10px;
    flex-wrap: wrap;
    height: 70px;
  }

  .logo,
  .kim66-logo {
    width: 280px;
    height: auto;
    max-height: 70px;
  }

  .logo-divider {
    width: 2px;
    height: 50px;
  }

  .home-button {
    padding: 10px 20px;
    font-size: 14px;
    border-width: 3px;
    white-space: nowrap;
  }

  .container {
    flex-direction: column;
    min-height: auto;
    align-items: center;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
  }

  .image-section {
    padding: 0 20px;
    min-height: auto;
    height: auto;
    margin-bottom: 30px;
    align-items: center;
    width: 100%;
  }

  .main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 65vh;
  }

  .content-section {
    margin-top: -45px;
    width: auto;
    max-width: 100%;
    min-height: auto;
    height: auto;
    padding: 0 30px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title {
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    display: block;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.1) 100%
    );
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
    margin: 0 auto 25px auto;
    align-self: center;
  }

  .content {
    font-size: 18px;
    letter-spacing: 2px;
    text-align: left;
    word-wrap: break-word;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 50%,
      rgba(255, 255, 255, 0.08) 100%
    );
    padding: 20px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .highlight {
    font-size: 18px;
    letter-spacing: 2px;
    word-wrap: break-word;
  }

  .bottom-right-button {
    margin-top: 30px;
    padding: 14px 28px;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-self: center;
    margin-left: 0;
    word-wrap: break-word;
    white-space: normal;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .content-section {
    width: auto;
    max-width: 900px;
    padding: 0 40px;
  }

  .main-image {
    max-height: 85vh;
  }
}

@media (max-width: 1024px) {
  body {
    padding: 0 15px;
    align-items: flex-start;
    min-height: 100vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .header-container {
    top: 15px;
    left: 15px;
    right: 15px;
    height: 70px;
  }

  .logo-container {
    gap: 10px;
    flex-wrap: wrap;
    height: 70px;
  }

  .logo,
  .kim66-logo {
    width: 280px;
    height: auto;
    max-height: 70px;
  }

  .logo-divider {
    width: 2px;
    height: 50px;
  }

  .home-button {
    padding: 10px 20px;
    font-size: 14px;
    border-width: 3px;
    white-space: nowrap;
  }

  .container {
    flex-direction: column;
    min-height: auto;
    align-items: center;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
  }

  .image-section {
    padding: 0 20px;
    min-height: auto;
    height: auto;
    margin-bottom: 30px;
    align-items: center;
    width: 100%;
  }

  .main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 65vh;
  }

  .content-section {
    margin-top: -45px;
    width: auto;
    max-width: 100%;
    min-height: auto;
    height: auto;
    padding: 0 30px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title {
    font-size: 32px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }

  .content {
    font-size: 18px;
    letter-spacing: 2px;
    text-align: left;
    word-wrap: break-word;
  }

  .highlight {
    font-size: 18px;
    letter-spacing: 2px;
    word-wrap: break-word;
  }

  .bottom-right-button {
    margin-top: 30px;
    padding: 14px 28px;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-self: center;
    margin-left: 0;
    word-wrap: break-word;
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .image-section {
    width: 100%;
    min-height: auto;
    padding: 0 30px;
    margin-bottom: 30px;
    align-items: center;
  }

  .main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 65vh;
  }

  .content-section {
    width: auto;
    max-width: 100%;
    padding: 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title {
    font-size: 30px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0 15px;
    align-items: flex-start;
    min-height: 100vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .header-container {
    top: 15px;
    left: 15px;
    right: 15px;
    height: 65px;
  }

  .logo-container {
    gap: 10px;
    flex-wrap: wrap;
    height: 65px;
  }

  .logo,
  .kim66-logo {
    width: 240px;
    height: auto;
    max-height: 65px;
  }

  .logo-divider {
    width: 2px;
    height: 40px;
  }

  .home-button {
    padding: 10px 20px;
    font-size: 14px;
    border-width: 3px;
    white-space: nowrap;
  }

  .container {
    flex-direction: column;
    min-height: auto;
    align-items: center;
    justify-content: center;
    height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
  }

  .image-section {
    padding: 0 20px;
    min-height: auto;
    height: auto;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 60vh;
  }

  .content-section {
    width: auto;
    max-width: 100%;
    min-height: auto;
    height: auto;
    padding: 0 30px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title {
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
  }

  .content {
    font-size: 16px;
    letter-spacing: 2px;
    text-align: left;
    word-wrap: break-word;
  }

  .highlight {
    font-size: 16px;
    letter-spacing: 2px;
    word-wrap: break-word;
  }

  .bottom-right-button {
    margin-top: 30px;
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-self: center;
    margin-left: 0;
    word-wrap: break-word;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0 10px;
    align-items: flex-start;
    min-height: 100vh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .header-container {
    top: 10px;
    left: 10px;
    right: 10px;
    height: 55px;
  }

  .logo-container {
    gap: 8px;
    flex-wrap: wrap;
    height: 55px;
  }

  .logo,
  .kim66-logo {
    width: 200px;
    height: auto;
    max-height: 55px;
  }

  .logo-divider {
    width: 2px;
    height: 30px;
  }

  .home-button {
    padding: 8px 16px;
    font-size: 12px;
    border-width: 2px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .container {
    padding-top: 80px;
    padding-bottom: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .image-section {
    padding: 0 15px;
    margin-bottom: 20px;
    min-height: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .main-image {
    max-width: 100%;
    max-height: 50vh;
    width: 100%;
  }

  .content-section {
    padding: 0 20px;
    min-height: auto;
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .title {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 120%;
    white-space: normal;
    word-wrap: break-word;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .content {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 150%;
    word-wrap: break-word;
  }

  .content p {
    margin-bottom: 15px;
  }

  .highlight {
    font-size: 14px;
    letter-spacing: 1.5px;
    word-wrap: break-word;
    display: inline;
  }

  .bottom-right-button {
    margin-top: 25px;
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {
  .header-container {
    height: 50px;
  }

  .logo-container {
    height: 50px;
  }

  .logo,
  .kim66-logo {
    width: 180px;
    height: auto;
    max-height: 50px;
  }

  .logo-divider {
    height: 25px;
  }

  .home-button {
    padding: 6px 12px;
    font-size: 11px;
  }

  .title {
    font-size: 18px;
    letter-spacing: 1.5px;
    white-space: normal;
    word-wrap: break-word;
  }

  .content {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .highlight {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .bottom-right-button {
    padding: 10px 16px;
    font-size: 12px;
  }
}
