body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  line-height: 1.6;
  background-color: #fff;
}

/* Global Link Reset (Preventing any blue links) */
a, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #000;
}

/* Navbar */
.navbar {
  padding: 1.5rem 2rem;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.nav-logo span {
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a.active {
  color: #000;
  font-weight: 700;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  bottom: 0;
}

/* Header */
header {
  padding: 5rem 2rem;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #000;
}

.logo span {
  font-weight: 300;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  color: #000;
}

.sub {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  color: #888;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.card {
  border-left: 2px solid #000;
  padding-left: 1.5rem;
}

.card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  color: #000;
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

/* About Section/Page Specific Styles */
.about-section {
  padding: 6rem 2rem;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 350px;
  max-width: 350px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  border: 1px solid #000;
  box-shadow: 6px 6px 0px #000;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
}

.about-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Call to Action */
.cta {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.cta:hover {
  background: #333;
}

/* Footer */
footer {
  text-align: center;
  padding: 5rem 2rem;
  background: #fafafa;
  border-top: 1px solid #eee;
}

/* Insights Index Page */
.insights-header {
  padding: 6rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.insights-header h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.insights-header .sub {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.insights-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
}

.insight-item {
  border: 1px solid #000;
  padding: 4rem;
  margin-bottom: 3.5rem;
  background-color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.insight-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0px #000;
}

.insight-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.insight-title {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #000;
}

.insight-title a {
  color: #000;
  text-decoration: none;
}

.insight-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.insight-link {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.insight-link:hover {
  color: #666;
  border-color: #666;
}

/* Insight Detail Page (Template structure) */
.insight-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  text-align: center;
}

.insight-article h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: #000;
}

.insight-article .insight-meta {
  margin-bottom: 3.5rem;
  text-align: center;
}

.insight-box {
  border: 1px solid #000;
  padding: 4rem;
  background-color: #fff;
  text-align: left;
  margin-bottom: 3rem;
  box-shadow: 8px 8px 0px #000;
}

.insight-content {
  font-size: 1rem;
  color: #222;
  line-height: 1.8;
}

.insight-content p {
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.insight-content p strong {
  font-weight: 700;
  color: #000;
}

.insight-content h3 {
  font-size: 1.25rem;
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
  padding-bottom: 6px;
  display: inline-block;
  color: #000;
}

.insight-content ul {
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.insight-content li {
  margin-bottom: 1rem;
  font-weight: 300;
  list-style-type: square;
}

.insight-content li strong {
  font-weight: 700;
  color: #000;
}

.insight-content blockquote {
  border-left: 3px solid #000;
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  font-style: italic;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.back-to-insights {
  margin-top: 4rem;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    gap: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .sub {
    font-size: 1.1rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .about-section {
    padding: 4rem 1.5rem;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .about-image {
    max-width: 280px;
    flex: 0 0 auto;
  }

  .about-image img {
    box-shadow: none;
    border: 1px solid #000;
  }

  .about-content h2 {
    text-align: center;
  }

  .insights-header {
    padding: 4rem 1.5rem 2rem;
  }

  .insights-header h1 {
    font-size: 2.2rem;
  }

  .insight-item {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
  }

  .insight-title {
    font-size: 1.4rem;
  }

  .insight-article {
    padding: 4rem 1.5rem;
  }

  .insight-article h1 {
    font-size: 1.8rem;
  }

  .insight-box {
    padding: 2rem 1.5rem;
  }
}
