/* === BASE RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === BODY === */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #000000; /* Jet Black */
  color: #F5F5F5; /* Whitesmoke */
  line-height: 1.6;
}

/* === HEADER === */
header {
  background-color: #1C1C1C; /* Carbon */
  color: #F5F5F5;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 3px solid #B22222; /* Firebrick Red */
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

header p {
  font-style: italic;
  color: #FFD700; /* Gold */
  margin-top: 0px;
  font-size: 1.1rem;
}

/* === NAVIGATION === */
nav {
  background-color: #1C1C1C;
  padding: 10px 60px;
  margin-bottom: 5px;
  text-align: left;

}

nav a {
  margin: 0 15px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

nav a:hover {
  color: #B22222;
}

/* === MAIN SECTIONS === */
section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  background-color: #1C1C1C;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #FFD700;
}

section p {
  margin-bottom: 15px;
  color: #F5F5F5;
  font-size: 1.05rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background-color: #B22222; /* Firebrick Red */
  color: #F5F5F5;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #FFD700;
  color: #000000;
}

/* === FOOTER === */
footer {
  background-color: #1C1C1C;
  color: #FFD700;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 0.9rem;
}

/* === TIMELINE === */
.timeline-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 40px;
  position: relative;
}

.timeline-container h2 {
  text-align: center;
  color: #FFD700;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 1000px; /* Force some space */
}


.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background-color: #B22222;
  z-index: 0;
}

.timeline-event {
  position: relative;
  width: 50%;
  padding: 20px 30px;
}

.timeline-event.left {
  float: left;
  clear: both;
  text-align: right;
}

.timeline-event.right {
  float: right;
  clear: both;
  text-align: left;
}

.timeline-event::before {
  content: '';
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  background-color: #FFD700;
  border: 3px solid #000;
  border-radius: 50%;
  z-index: 2;
}

.timeline-event.left::before {
  right: -10px;
}

.timeline-event.right::before {
  left: -10px;
}

.timeline-event .content {
  background-color: #1C1C1C;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  color: #F5F5F5;
  position: relative;
}
.research-container {
  max-width: 1200px;
  margin: 60px auto;
  position: relative;
}

.block {
  display: flex;
  justify-content: flex-start;
  margin: 40px 0;
  width: 100%;
}

.block.right {
  justify-content: flex-end;
}

.block .content {
  width: 45%;
  background-color: #1C1C1C;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  color: #F5F5F5;
  text-align: left;
}

.block.left .content {
  margin-right: auto;
}

.block.right .content {
  margin-left: auto;
}
.logo {
  width: 60px; /* or whatever size you prefer */
  height: auto;
  position: absolute;
  top: 45px;
  left: 20px;
  z-index: 1000;
}
h1 {
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  margin-top: 40px;
}
.timeline::after {
  content: '';
  display: table;
  clear: both;
}
.timeline-event.left .image-opposite img {
  width: 250px;
  height: 250px;

}