/* Global Styles */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: silver;
  background-color: white;
}

/* Header Styles */

header {
  background-color: white;
  padding: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  margin-right: 20px;
}

header .logo img {
  width: 100px;
  height: auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.name-slogan {
  margin-left: 20px;
}

.name-slogan h1 {
  margin-bottom: 5px;
}

.name-slogan .slogan {
  font-size: 16px;
  color: black;
}

/* Navigation Styles */

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: black;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: silver;
}

/* Main Content Styles */

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section {
  background-color: white;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  width: 100%;
}

section ul li {
  color: black;
}

/* Slideshow Styles */

.slideshow-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dot-container {
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: silver;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot:hover,
.dot.active {
  background-color: black;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

/* Typography Styles */

h1,
h2 {
  margin-bottom: 20px;
  font-weight: bold;
  color: black;
}

p {
  margin-bottom: 20px;
  color: black;
}

/* Horizontal Rule Styles */

hr {
  border: none;
  border-top: 1px solid silver;
  margin-bottom: 40px;
  width: 100%;
}

/* Image Container Styles */

.image-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  width: auto;
}

/* Footer Styles */

footer {
  background-color: black;
  color: white;
  padding: 1px;
  text-align: center;
  clear: both;
}

footer p {
  margin-bottom: 10px;
  color: white;
}

/* Contact Information Styles */

.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Social Media Icons Styles */

.social-media-icons {
  margin-bottom: 20px;
}

.social-media-icons a {
  margin-right: 10px;
}

.social-media-icons img {
  width: 30px;
  height: 30px;
  transition: opacity 0.2s ease;
}

.social-media-icons img:hover {
  opacity: 0.7;
}

/* Media Queries */

@media only screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  header .logo {
    margin-right: 0;
    margin-bottom: 20px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin-right;
    margin-bottom: 10px;
  }
  main {
    margin: 20px auto;
  }
  section {
    padding: 20px;
  }
}

@media only screen and (max-width: 480px) {
  main {
    padding: 0 10px;
  }
  section {
    padding: 10px;
  }
  h1, h2 {
    font-size: 24px;
  }
}

section ul li {
  color: black;
}