* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

header {
  background-color: #fff;
  color: white;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(evotor.webp);
  background-size: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

nav {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem 0;
}

nav ul li {
  margin: 0 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #007bff;
  font-weight: 700;
  font-size: 1.1rem;
}

nav ul li a:hover {
  color: #0056b3;
}

section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #007bff;
  text-align: center;
}

.support-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.support-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.support-form input[type="text"],
.support-form input[type="email"],
.support-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.support-form button {
  background: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.support-form button:hover {
  background: #0056b3;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.pricing-table th {
  background: #007bff;
  color: white;
}

.pricing-table tr:nth-child(even) {
  background: #f9f9f9;
}

.download-section {
  text-align: center;
}

.download-section a {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1.1rem;
}

.download-section a:hover {
  background: #0056b3;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
}

.documents-list li {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.documents-list li a {
    text-decoration: none;
    color: #007bff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.documents-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.documents-list li i {
    font-size: 1.2rem;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  nav ul {
      flex-direction: column;
      text-align: center;
  }

  nav ul li {
      margin: 0.5rem 0;
  }

  header h1 {
      font-size: 1.8rem;
  }

  h2 {
      font-size: 1.5rem;
  }

  .support-form {
      padding: 1rem;
  }

  .pricing-table th,
  .pricing-table td {
      padding: 0.5rem;
      font-size: 0.9rem;
  }
}