/* style/resources-secure-pg66-access.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --accent-color: #EA7C07; /* Màu cho nút Đăng nhập */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-secure-pg66-access {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Body background is from shared.css, but page sections can have their own */
}

/* Ensure main content has proper top padding to clear fixed header */
.page-resources-secure-pg66-access.page-content {
  padding-top: var(--header-offset, 120px);
}

.page-resources-secure-pg66-access__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-secure-pg66-access__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color); /* Fallback if image not loaded */
  color: var(--text-light);
}

.page-resources-secure-pg66-access__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-secure-pg66-access__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-secure-pg66-access__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-secure-pg66-access__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  background-color: var(--secondary-color); /* Light background for text overlay */
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-secure-pg66-access__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-secure-pg66-access__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-resources-secure-pg66-access__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-secure-pg66-access__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-secure-pg66-access__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid transparent;
}

.page-resources-secure-pg66-access__btn-primary:hover {
  background: #1e87b7; /* Darken primary color */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-secure-pg66-access__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-secure-pg66-access__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-secure-pg66-access__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-secure-pg66-access__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-secure-pg66-access__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-secure-pg66-access__card {
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--text-dark);
}

.page-resources-secure-pg66-access__card:hover {
  transform: translateY(-5px);
}

.page-resources-secure-pg66-access__card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-secure-pg66-access__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-resources-secure-pg66-access__card-text {
  font-size: 1em;
  color: var(--text-dark);
}