body 
{
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #111;
  color: #fff;
}

header 
{
  background-color: #000;
  text-align: center;
  padding: 20px;
}

header img.logo 
{
  height: 80px;
}

h1
{
  margin: 10px 0 0;
}

section
{
  padding: 20px;
  text-align: center;
}

section img 
{
  max-width: 90%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
}

.cards 
{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.cards img 
{
  width: 120px;
  border-radius: 8px;
}

.gallery-container 
{
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.gallery 
{
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.gallery img 
{
  width: 100%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  border: 0px solid #f06;
  box-sizing: border-box;
}


.arrow 
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 2em;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}

.arrow.left 
{
  left: 0;
}

.arrow.right 
{
  right: 0;
}

.arrow.left:hover, .arrow.right:hover
{
  background-color: #000;
}

footer 
{
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.social-icons 
{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img 
{
  width: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover 
{
  transform: scale(1.2) rotate(1deg);
}

footer address 
{
  margin-top: 10px;
  font-style: normal;
}

nav 
{
  background-color: #222;
  padding: 10px 0;
  position: relative;
}

.menu-toggle 
{
  display: none;
  font-size: 1.8em;
  color: #f06;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}

nav ul 
{
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

nav ul li a 
{
  color: #f06;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover 
{
  background-color: #f06;
  color: #000;
}

.video-gallery 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.video-gallery video 
{
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

@media screen and (max-width: 768px) 
{
  .menu-toggle 
  {
    display: block;
  }

  nav ul 
  {
    flex-direction: column;
    align-items: center;
    max-height: 0;
  }

  nav ul.show 
  {
    max-height: 500px;
  }

  nav ul li a 
  {
    display: block;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media screen and (max-width: 600px) 
{
  header img.logo 
  {
    height: 60px;
  }

  h1 
  {
    font-size: 1.5em;
  }

  .cards img 
  {
    width: 80px;
  }

  .arrow
  {
    font-size: 1.5em;
    padding: 6px;
  }

  .social-icons img 
  {
    width: 30px;
  }

  .video-gallery 
  {
    flex-direction: column;
    align-items: center;
  }

  .video-gallery video 
  {
    max-width: 100%;
    width: 90%;
  }
}
