/* Existing hover opacity stays as-is */
a.myopacity img{
    border: none;
    padding: 3px;
    filter:alpha(opacity=60);
    -moz-opacity: 0.60;
    opacity: 0.60;
  }
  a.myopacity:hover img{
    border: none;
    filter:alpha(opacity=100);
    -moz-opacity: 1.0;
    opacity: 1.0;
  }
  
/* SnakeEyeSecurity responsive landing ----------------------------------- */

.ses-landing-wrapper {
  max-width: 1100px;
  margin: 40px auto 48px auto;
}

/* HERO */
.ses-hero {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background-color: #031631; /* fallback under image */
  border: none;
}

.ses-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.ses-hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.ses-hero-tagline {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ses-hero-subtitle {
  margin-top: 8px;
  font-size: 15px;
}

/* BODY ROW */
.ses-body-row {
  margin-top: 24px;
}

.ses-section-title {
  margin-top: 0;
  color: #1a237e; /* indigo-ish */
}

.ses-body-text {
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
}

/* Feature list */
.ses-feature-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: #555555;
}

.ses-feature-list li {
  margin-bottom: 4px;
}

/* CTAs */
.ses-cta-row {
  margin-top: 16px;
}

.ses-cta-primary,
.ses-cta-secondary {
  min-width: 170px;
}

/* Right column */
.ses-right-col {
  margin-top: 16px;
}

.ses-counter-card {
  max-width: 260px;
  margin: 0 auto 16px auto;
  padding: 14px 12px;
}

.ses-small-caption {
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .ses-landing-wrapper {
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .ses-hero-inner {
    padding: 28px 20px;
    min-height: 220px;
  }
  .ses-hero-tagline {
    font-size: 24px;
  }
  .ses-hero-subtitle {
    font-size: 13px;
  }
  .ses-body-row {
    margin-top: 18px;
  }
}

  