{
  font-family: 'Open Sans', sans-serif;
  line-height: 1.7;
  color: #4a4a4a;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: #d32f2f;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
  color: #b71c1c;
}

header {
  background-color: #fafafa;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #eee;
}

.logo img {
  max-width: 180px;
  height: auto;
}

nav {
  display: flex;
}

nav a {
  padding: 0 20px;
  font-weight: 500;
  color: #555;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d32f2f;
}

main {
  padding: 50px;
  background-color: #fff;
  max-width: 1024px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

article {
  margin-bottom: 40px;
}

h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #666;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.links {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

.links a {
  padding: 12px 25px;
  background-color: #d32f2f;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.links a:hover {
  background-color: #b71c1c;
  text-decoration: none;
}

footer {
  background-color: #222;
  color: #eee;
  padding: 25px;
  text-align: center;
  box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.05);
}

footer p {
  margin-bottom: 12px;
  font-size: 14px;
}

footer a {
  color: #eee;
  margin: 0 12px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d32f2f;
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 15px;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    padding: 12px 0;
    text-align: left;
  }

  .links {
    flex-direction: column;
  }

  .links a {
    margin: 12px 0;
    text-align: center;
  }

  main {
    padding: 30px;
    margin: 20px auto;
  }

  h1 {
    font-size: 26px;
  }
}
