
* {
  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;
}


.hero {
  background-color: #141414;
  padding: 48px 16px; 
  text-align: center;
}

.hero h2 {
  color: #bb0a1e;
  font-size: 35.2px; 
  margin-bottom: 16px; 
}

.hero p {
  font-size: 17.6px; 
  max-width: 800px;
  margin: 0 auto;
}


.cases {
  padding: 40px 0; 
}

.cases h3 {
  color: #bb0a1e;
  margin-bottom: 16px; 
  font-size: 28.8px; 
}

.questions {
  list-style-type: none;
  margin-top: 16px; 
  padding-left: 0;
  text-align: left;
  max-width: 800px;
  margin: 16px auto; 
}

.questions li {
  margin-bottom: 24px; 
  font-size: 19.2px; 

}

.read-more {
  display: inline-block;
  margin-top: 16px;
  color: #bb0a1e;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  color: #f54242;
  text-decoration: underline;
}

footer {
  background-color: #1a1a1a;
  padding: 24px 0;
  text-align: center;
  font-size: 14.4px;
  border-top: 1px solid #333;
  color: #aaa;
  margin-top: 2rem;
}

.centered-image {
  display: block;
  margin: 16px auto 32px auto;
  max-width: 60%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.3);
}

.centered-title {
  text-align: center;
  color: #bb0a1e;
  font-size: 28.8px;
  margin-bottom: 16px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: url('CRIMEEE.jpg') no-repeat center center / cover;
  filter: blur(8px) brightness(0.4);
  z-index: -1;
}

.questions li a {
  color: #bb0a1e;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.questions li a:hover {
  color: #f54242;
  text-decoration: underline;
}
