/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure the page is responsive and fits all screen sizes */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

/* Container for main content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header and navigation */
header {
  width: 100%;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
}

/* Main content sections */
section {
  padding: 20px 0;
}

section h1, section h2, section h3 {
  text-align: center;
  margin-bottom: 20px;
}

section p {
  text-align: justify;
  margin-bottom: 15px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #f8f8f8;
}

/* Social media and contact sections */
.social-media, .contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-media a, .contact-info a {
  text-decoration: none;
  color: #333;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for smaller screens */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    width: 95%;
    padding: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }

  section h1, section h2, section h3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 12px;
  }

  .container {
    width: 98%;
    padding: 5px;
  }

  section h1, section h2, section h3 {
    font-size: 1.2rem;
  }

  .social-media, .contact-info {
    flex-direction: column;
    align-items: center;
  }
}