/* style/resources-78win-registration-login-process.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-color: #C30808;
  --login-button-color: #C30808;
  --button-text-color: #FFFF00;
  --background-color-page: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-78win-registration-login-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color-page);
}

/* Hero Section */
.page-resources-78win-registration-login-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a8d5f 100%); /* Slightly lighter green for gradient */
  color: var(--text-color-light);
}

.page-resources-78win-registration-login-process__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-78win-registration-login-process__hero-image {
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.page-resources-78win-registration-login-process__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-resources-78win-registration-login-process__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-78win-registration-login-process__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--button-text-color); /* Sử dụng màu vàng cho tiêu đề nổi bật */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-78win-registration-login-process__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--secondary-color);
}

.page-resources-78win-registration-login-process__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-78win-registration-login-process__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-button-color);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--button-text-color);
}

.page-resources-78win-registration-login-process__cta-button:hover {
  background: #a80707; /* Màu đỏ sẫm hơn khi hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-78win-registration-login-process__cta-button--login {
  background: var(--login-button-color);
}

.page-resources-78win-registration-login-process__cta-button--login:hover {
  background: #a80707;
}

/* General Section Styles */
.page-resources-78win-registration-login-process__section {
  padding: 60px 20px;
  background-color: var(--background-color-page);
  color: var(--text-color-dark);
  border-bottom: 1px solid var(--border-color);
}

.page-resources-78win-registration-login-process__section:last-of-type {
  border-bottom: none;
}

.page-resources-78win-registration-login-process__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-78win-registration-login-process__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-78win-registration-login-process__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--register-button-color);
  border-radius: 2px;
}

.page-resources-78win-registration-login-process__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-78win-registration-login-process__highlight {
  color: var(--register-button-color);
  font-weight: bold;
}