* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f4f4f4;
  color: #090446; 
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Times New Roman', Times, serif;
  color: #090446;
  text-align: center;
  margin-bottom: 20px;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background-color: #090446;
  padding: 15px 0;
  border-bottom: 4px solid #6D654A; 
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; 
}

.logo {
  width: 100px;
  height: 100px;
  border: 2px solid #FEC171; 
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo img {
  width: 90%;
  height: auto;
}

nav {
  flex: 1; 
  display: flex;
  justify-content: center; 
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-button {
  text-decoration: none;
  display: block;
  padding: 12px 25px;
  border: 2px solid #6D654A;
  background-color: #FEC171; 
  color: #090446 !important; 
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s ease;
  white-space: nowrap; 
}

.nav-button:hover {
  background-color: white !important;
  color: #F71735 !important; 
  transform: translateY(-2px);
}

.hero {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.page-title {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 20px 40px;
  border: 4px solid #090446;
  background-color: white;
}

.intro-box {
  width: 80%;
  margin: 30px auto;
  padding: 40px;
  background-color: white;
  border: 2px solid #333;
  box-shadow: 10px 10px 0px #6D654A;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-box p {
  width: 100%;
  text-align: left;
}

.intro-box ul {
  margin: 20px 0;
  padding-left: 40px;
  list-style-type: square;
  align-self: flex-start;
}

.setup-image, .turn-image, .image-box img {
  display: block;
  margin: 20px auto;
  max-width: 60%;
  height: auto;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
  padding: 40px 0;
  background-color: #090446;
  color: white;
  margin-top: 50px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-box {
  width: 45px;
  height: 45px;
  border: 2px solid #FEC171;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-box img {
    width: 25px;
    height: 25px;
}

@media (max-width: 850px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .intro-box {
    width: 95%;
    padding: 20px;
  }

  .setup-image, .turn-image {
    max-width: 90%;
  }
}