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

/* Body Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #f15025;
}

/* Banner */
.banner {
  width: 100%;
  height: 250px;
  background-image: url("/images/banner.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
}

/* Main Content */
main {
  padding: 5%;
  padding-block: 2%;
  font-size: 1.2rem;
}

h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 300;
  color: black;
}

main p {
  font-size: 1rem;
  color: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px 20px;
  background-color: #f7f7f7;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #555;
}

/* Table Styles */
table {
  width: 80%;
  margin: auto;
  max-width: 1500px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Raleway", sans-serif;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 3px solid #231f20;
}

thead tr {
  background-color: #f15025;
  color: #fff;
}

thead th {
  padding: 15px;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
}

tbody tr {
  background-color: #fff;
  color: #231f20;
}

tbody tr:nth-child(even) {
  background-color: rgba(241, 80, 37, 0.1);
}

tbody td {
  padding: 15px;
  font-size: 1em;
  border: none;
  text-align: center;
  font-weight: 400;
}

/* Styled Button */
.styled-button,
.link-button {
  background-color: #f15025;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.styled-button:hover,
.link-button:hover {
  background-color: #d9471f;
  transform: scale(1.05);
}

/* Cards */
.cards-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border: 3px solid #231f20;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 30%;
  max-width: 350px;
  padding: 10px;
  font-family: "Raleway", sans-serif;
  color: #231f20;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-content {
  font-size: 1em;
  font-weight: 400;
  padding: 1em;
}

.profile-card {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid rgba(241, 80, 37, 0.8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Pricing Highlights */
#standard {
  border: 3px solid #f15025;
  box-shadow: 0 0 10px rgba(241, 80, 37, 0.8);
}

#plus {
  border: 3px solid rgb(248, 139, 25);
  box-shadow: 0 0 15px rgba(248, 139, 25, 0.8);
}

#deluxe {
  border: 3px solid rgb(255, 198, 12);
  box-shadow: 0 0 25px rgba(255, 198, 12, 0.8);
}

/* Horizontal Rule */
hr {
  width: 50%;
  height: 3px;
  margin: 30px auto;
  background-color: black;
  border: none;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  table {
    width: 95%;
  }

  thead th,
  tbody td {
    font-size: 0.9em;
    padding: 10px;
  }

  .styled-button {
    font-size: 0.9em;
    padding: 8px 16px;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    margin-bottom: 20px;
  }

  .profile-card {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  main {
    font-size: 0.8rem;
  }
  .card-title {
    font-size: 1.2em;
  }

  .card-content {
    font-size: 0.9em;
  }

  .styled-button {
    font-size: 0.8em;
    padding: 6px 12px;
  }
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
