/* styles.css - Preserving exact appearance of Sequence Inc. website */

/* Base Styles from index.html */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f9fc;
  color: #333;
}

header {
  background-color: #3364ff; /*  #1e2a38; */
  color: white;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  padding: 3rem;
  background-color: #e9eff6;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1rem;
  color: #1e2a38;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.section {
  padding: 2rem 3rem;
}

.section h2 {
  color: #1e2a38;
}

.section p {
  max-width: 850px;
  line-height: 1.6;
}

.link-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #1e2a38;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.link-button:hover {
  background-color: #2d3e50;
}

footer {
  background-color: #3364ff;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Additional styles from projects.html */
.projects-section {
  padding: 2rem 3rem;
  max-width: 850px;
  margin: auto;
}

.projects-section h2 {
  color: #1e2a38;
  margin-top: 2rem;
}

.projects-section p {
  line-height: 1.6;
}

/* Additional styles from insights.html */
.insights-section {
  padding: 2rem 2rem;
  max-width: 900px;
  margin: auto;
}

.insights-section h2 {
  color: #1e2a38;
  margin-top: 2rem;
}

.insights-section p {
  line-height: 1.6;
}

.insights-section ul {
  padding-left: 1.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
}

.column {
  flex: 1;
  min-width: 300px;
}

.column.image img {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .insights-section {
    padding: 1rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    margin: 0.5rem 0;
  }

  .row {
    flex-direction: column;
  }
}

/* Additional styles from about.html */
.about-section {
  padding: 2rem 3rem;
  max-width: 850px;
  margin: auto;
}

.about-section h2 {
  color: #1e2a38;
  margin-top: 2rem;
}

.about-section p {
  line-height: 1.6;
}

.about-section ul {
  line-height: 1.6;
}
