body {
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9; /* Light gray background */
  color: #333;
  padding-top: 140px;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  background-color: #ffffff; /* White background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.logo {
  position: relative;
  z-index: 1002;
}

.logo img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0;
  padding: 0;
}

.header-links {
  margin-top: 10px;
  text-align: center;
  width: 100%;
}

.header-links a {
  color: #555; /* Dark gray for links */
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

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

.pdf-links .grid-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2c3e50; /* Dark blue-gray */
  align-content: center;
}

.pdf-links .grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  border: 2px solid #e0e0e0; /* Light gray border */
  border-radius: 5px;
  padding: 10px;
  background-color: #ffffff; /* White background */
}

.pdf-links .grid-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.pdf-links h3 {
  text-align: left;
  color: #2c3e50; /* Dark blue-gray */
}

/* Footer */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: #2c3e50; /* Dark blue-gray */
  color: #ffffff; /* White text */
  width: 100%;
  position: relative;
  bottom: 0;
  font-size: 16px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

footer a {
  color: #ffffff; /* White text */
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff; /* White background */
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .logo, .subscribe-form, .header-links {
    margin: 0 20px;
  }

  .pdf-links .pdf-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pdf-links .grid-item {
    flex: 0 0 200px;
  }
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.subscribe-form input {
  width: 90%;
  padding: 8px;
  margin-bottom: 10px;
  border: 2px solid #e0e0e0; /* Light gray border */
  border-radius: 5px;
  font-size: 14px;
}

.subscribe-form button {
  background-color: #2c3e50; /* Dark blue-gray */
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  width: 50%;
}

.subscribe-form button:hover {
  background-color: #1a252f; /* Darker blue-gray */
}

.privacy-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  color: #333;
}

h1 {
  color: #2c3e50; /* Dark blue-gray */
  border-bottom: 2px solid #3498db; /* Bright blue */
  padding-bottom: 10px;
}

h2 {
  color: #2980b9; /* Medium blue */
  margin-top: 30px;
}

.last-updated {
  font-style: italic;
  color: #7f8c8d; /* Gray */
}

ul {
  padding-left: 20px;
}

.contact-info {
  background-color: #ecf0f1; /* Light gray */
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.contact-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f2f2f2; /* Light gray */
}

.icon {
  margin-right: 10px;
  font-size: 20px;
}

.email-icon {
  color: #d44638; /* Gmail red color */
}

.facebook-icon {
  color: #1877f2; /* Facebook blue color */
}

.instagram-icon {
  color: #e4405f; /* Instagram pink color */
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  position: relative;
}

.hidden {
  display: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.feedback-link {
  position: absolute;
  top: 10px;
  right: 10px;
}

#menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2c3e50; /* Dark blue-gray */
  padding: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: 50px;
}

#menu-list {
  list-style: none;
  padding: 10px;
  margin: 0;
  position: absolute;
  top: 50px;
  right: 15px;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  max-width: 250px;
  border-radius: 5px;
}

#menu-list li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-radius: 3px;
}

#menu-list li a:hover {
  background-color: #f0f0f0;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .logo, .subscribe-form, .header-links {
    margin: 0 20px;
  }

  .pdf-links .pdf-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pdf-links .grid-item {
    flex: 0 0 200px;
  }
}

.force-repaint {
  transform: translateZ(0);
}

* {
  box-sizing: border-box;
}
