/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #FF0000;
}

.header .navigation ul {
    list-style: none;
}

.header .navigation ul li {
    display: inline-block;
    margin-right: 20px;
}

.header .navigation ul li:last-child {
    margin-right: 0;
}

.header .navigation ul li a {
    text-decoration: none;
    color: #666;
}

.header .navigation ul li a:hover {
    color: #333;
}

.header .navigation ul li .button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* Hero section styles */
.hero {
    background-color: #FF0000;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Featured tasks section styles */
.featured-tasks {
    padding: 80px 0;
}

.featured-tasks h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(90deg, #ff3c3c, #ff7373);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -300px 0;
  }
  100% {
    background-position: 300px 0;
  }
}


.lx-highlight-description {
    font-size: 16px;
    line-height: 2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    transition: letter-spacing 0.3s ease;
  }
  
  .lx-highlight-description:hover {
    letter-spacing: 2px;
  }
   

/* If you keep using .task-list, keep its style here */
.task-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.task {
    flex-basis: calc(33.33% - 20px);
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.task h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.task p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .header .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
    }
  
    .header .logo {
      font-size: 28px;
      margin-bottom: 10px;
    }
  
    .header .navigation ul {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 0;
    }
  
    .header .navigation ul li {
      margin: 0;
    }
  
    .header .navigation ul li a {
      display: block;
      padding: 0.5rem 1rem;
      font-size: 1rem;
    }
  }
  
  