/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Georgia', serif;
  color: #e0e0e0;
  background-color: #080857;
  background-image: radial-gradient(circle, #1e1e2f 20%, #12121c 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* Content Wrapper */
main {
  max-width: 800px;
  margin: 30px;
  padding: 20px;
  background-color: rgba(30, 30, 47, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* Header */
header {
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.4em;
  color: #c3a675;
  text-shadow: 0 0 5px rgba(255, 223, 186, 0.6);
}

/* Intro Section */
#intro h2 {
  font-size: 1.6em;
  color: #e0d1a4;
  margin-bottom: 10px;
}

#intro p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 15px;
}

/* Features Section */
#features {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(30, 30, 40, 0.85);
  border-radius: 8px;
}

#features h2 {
  font-size: 1.6em;
  color: #e0d1a4;
  margin-bottom: 15px;
}

#features ul {
  list-style-type: none;
  padding-left: 0;
  color: #d2d2d2;
  text-align: left;
}

#features li {
  margin: 8px 0;
  padding-left: 24px;
  position: relative;
}

#features li::before {
  content: '•';
  color: #c3a675;
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Call-to-Action Section */
#call-to-action {
  margin-top: 20px;
}

#call-to-action p {
  font-size: 1.2em;
  color: #d8d8d8;
  margin-bottom: 10px;
}

/* Button Styling */
.button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1em;
  color: #fff;
  background-color: #6b6f8a;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(107, 111, 138, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  background-color: #595d73;
  box-shadow: 0 0 15px rgba(107, 111, 138, 0.7);
}

.button-access{
  display: inline-block;
  padding: 12px 25px;
  font-size: 1em;
  color: #fff;
  background-color: #6b6f8a;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(107, 111, 138, 0.5);
  margin: 0 12px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.button-access:hover {
  background-color: #595d73;
  box-shadow: 0 0 15px rgba(107, 111, 138, 0.7);
}

/* Footer */
footer {
  margin-top: 25px;
  font-size: 0.9em;
  color: #a5a5a5;
}



/* Responsive Styling */

/* Mobile (max-width: 575px) */
@media (max-width: 575px) {
  body {
    flex-direction: column;
    padding: 15px;
  }

  main {
    max-width: 100%;
    padding: 15px;
    margin:0;
    text-align:left;
  }

  header h1 {
    font-size: 1.8em;
  }

  #features{
    margin-top:30px;
    padding: 0;
  }

  #intro h2,
  #features h2 {
    font-size: 1.4em;
  }

  #intro p,
  #call-to-action p {
    font-size: 1em;
  }

  .button {
    width:100%;
    padding: 10px 20px;
    font-size: 0.9em;
    text-align: center;
  }

  .button-access{
    width: 100%;
    margin: 12px 0 0 0;
    padding: 10px 20px;
    font-size: 0.9em;
    text-align: center;
  }
}

/* Tablet (min-width: 576px and max-width: 991px) */
@media (min-width: 576px) and (max-width: 991px) {
  body {
    flex-direction: column;
    padding: 20px;
  }

  main {
    max-width: 90%;
    padding: 20px;
  }

  header h1 {
    font-size: 2em;
  }

  #intro h2,
  #features h2 {
    font-size: 1.5em;
  }

  #intro p,
  #call-to-action p {
    font-size: 1.1em;
  }

  .button {
    padding: 12px 25px;
    font-size: 1em;
  }

}

