{
  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 {
  color: #b71c1c;
  text-decoration: none;
}

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.08);
  border-bottom: 1px solid #eee;
}

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

nav {
  display: flex;
}

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

nav a:hover {
    color: #d32f2f;
}

main {
  padding: 50px;
  background-color: #fff;
  max-width: 1024px;
  margin: 20px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

article {
  margin-bottom: 40px;
}

h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

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

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

.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.15);
}

.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 24px;
    background-color: #d32f2f;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

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

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

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

footer a:hover {
    color: #fff;
}

@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav a {
    padding: 15px 0;
    text-align: center;
  }

  .links {
    flex-direction: column;
    align-items: center;
  }

  .links a {
    margin: 15px 0;
    width: 80%;
    text-align: center;
  }
}
