* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  direction: rtl;
  text-align: right;
  min-height: 100vh;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  width: 800px; /* Fixed width instead of max-width */
  margin: 20px auto;
  padding: 20px;
  padding-bottom: 60px; /* Space for fixed footer */
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.intro {
  margin-bottom: 20px;
}

.intro h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.intro p {
  font-size: 1.1em;
  color: #333;
}

.tools-section h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.tools-list {
  list-style-type: none;
}

.tools-list li {
  margin: 15px 0;
}

.tool-link {
  text-decoration: none;
  color: #007bff;
  font-size: 1.2em;
  display: block;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.tool-link:hover {
  background-color: #f0f0f0;
}

.contact-section {
  margin-top: 20px;
}

.contact-section h2 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.contact-section p {
  font-size: 1.1em;
  color: #333;
}

.contact-section a {
  color: #007bff;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Media Queries for Mobile */
@media (max-width: 840px) { /* 800px + 20px margin left + 20px margin right */
  main {
    width: calc(100% - 30px); /* Full width minus margins */
    margin: 15px;
    padding: 15px;
    padding-bottom: 50px; /* Adjusted for fixed footer on mobile */
  }
}

@media (max-width: 600px) {
  .intro h1 {
    font-size: 1.5em;
  }

  .tools-section h2,
  .contact-section h2 {
    font-size: 1.3em;
  }

  .tool-link {
    font-size: 1.1em;
    padding: 8px;
  }

  .intro p,
  .contact-section p {
    font-size: 1em;
  }
}