* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #0d0d0d;
    color: #f2f2f2;
    line-height: 1.6;
}


.insights {
    padding: 3rem 1rem;
    background-color: #0d0d0d;
    color: #f2f2f2;
    text-align: center;
}

.insights h2 {
    color: #bb0a1e;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 700px;
    border-left: 4px solid #bb0a1e;
    box-shadow: 0 0 10px rgba(187, 10, 30, 0.2);
    text-align: left;
    border-radius: 10px;
}

.insight-card h3 {
    color: #f2f2f2;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.insight-card .name {
    margin-top: 1rem;
    font-style: italic;
    color: #bbb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Georgia', serif;
    background-color: #0d0d0d;
    color: #f2f2f2;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: #bb0a1e;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #f54242;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 16px 0;
  }
  
  header {
    background-color: #1a1a1a;
    border-bottom: 2px solid #bb0a1e;
    padding: 16px 0;
    text-align: center;
  }
  
  header h1 {
    color: #bb0a1e;
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
    gap: 24px;
    background-color: #1a1a1a;
    padding: 16px 0;
  }
  
  nav ul li a {
    color: #f2f2f2;
    font-weight: bold;
    font-size: 17.6px;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #f54242;
  }

  footer {
    background-color: #1a1a1a;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    color: #aaa;
    margin-top: 2rem;
}

a {
    text-decoration: none;
    color: #bb0a1e;
    transition: color 0.3s ease;
}

a:hover {
    color: #f54242;
}

@media (max-width: 768px) {
    .insight-card {
        margin: 1rem;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: url('STREET.jpg') no-repeat center center / cover;
    filter: blur(8px) brightness(0.4);
    z-index: -1;
  }

  .insight-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .insight-image img {
    width: 100px; 
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .insight-content {
    flex: 1;
  }

  .insight-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  
  .insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(187, 10, 30, 0.4);
    border-left-color: #f54242;
  }