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

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

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

nav {
  display: flex;
  align-items: center;
}

nav a {
  padding: 10px 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

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

article {
  margin-bottom: 40px;
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 4px 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 6px 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 {
  display: inline-block;
  padding: 12px 25px;
  background-color: #e44d26;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

  nav {
    flex-direction: column;
    width: 100%;
  }

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

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

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