/* ================================
   Atlas Partner Insights Styles
   ================================ */

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background-color: #001b38; /* Deep navy blue */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Centered container */
.content-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Logo */
.insight-image {
  width: 280px;
  max-width: 80%;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Text block */
.text-wrapper h1 {
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: #4db8ff; /* Accent light blue */
  margin-bottom: 1rem;
}

.text-wrapper p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6e6e6;
}

/* Footer */
footer {
  background-color: #000d1a;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #b0c4de;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .text-wrapper h1 {
    font-size: 1.4rem;
  }
  .text-wrapper p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
