{
  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: #e44d26;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

header {
  background-color: #2c3e50;
  padding: 25px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

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

nav {
  display: flex;
}

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

nav a:hover {
  color: #f39c12;
}

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

article {
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

article:last-child {
  border-bottom: none;
}

h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2c3e50;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 5px;
}

p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #555;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px 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 3px 7px rgba(0, 0, 0, 0.2);
}

.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: #3498db;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.links a:hover {
  background-color: #2980b9;
  color: #eee;
}

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

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

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

footer a:hover {
  color: #f39c12;
}

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

  .logo img {
    margin-bottom: 15px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    padding: 12px 0;
  }

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

  .links a {
    margin: 15px 0;
  }

  main {
    padding: 30px;
  }
}
