.page-blog-s666-security-and-user-experience {
  --color-primary: #113B7A;
  --color-secondary: #1D5FD1;
  --color-text-main: #F3F8FF;
  --color-text-secondary: #AFC4E8;
  --color-card-bg: #10233F;
  --color-border: #244D84;
  --color-glow: #4FA8FF;
  --color-gold: #F2C14E;
  --color-divider: #1B3357;
  --color-deep-navy: #08162B;
  color: var(--color-text-main); /* Default text color for the page */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--color-deep-navy); /* Assuming shared.css sets body background, this is for internal sections */
}

.page-blog-s666-security-and-user-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-blog-s666-security-and-user-experience__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-deep-navy) 100%);
  position: relative;
  overflow: hidden;
}

.page-blog-s666-security-and-user-experience__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-blog-s666-security-and-user-experience__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-s666-security-and-user-experience__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-blog-s666-security-and-user-experience__main-title {
  color: var(--color-gold);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-s666-security-and-user-experience__lead-paragraph {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-blog-s666-security-and-user-experience__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-s666-security-and-user-experience__btn-primary,
.page-blog-s666-security-and-user-experience__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-s666-security-and-user-experience__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: var(--color-text-main);
  border: none;
}

.page-blog-s666-security-and-user-experience__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(43, 115, 246, 0.4);
}

.page-blog-s666-security-and-user-experience__btn-secondary {
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 2px solid var(--color-border);
}