
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.note {
  display: inline-block;
  background-color: #ffe6e6; 
  color: #d9534f; 
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 500; 
}

.note strong {
  color: #c9302c; 
  font-weight: 700; 
}

section {
  margin-bottom: 40px; 
  padding: 20px;
  border-radius: 10px; 
 
}

.section-title {
  color: #2c3e50; 
  font-size: 2.2em; 
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700; 
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #3498db; 
  border-radius: 2px;
}

.benefits-list ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px; 
}

.benefits-list li {
  background-color: #ecf0f1;
  padding: 15px 20px;
  border-radius: 8px;
  line-height: 1.5;
  font-size: 1.1em;
  color: #34495e;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefits-list li::before {
  content: '✔';
  color: #27ae60;
  font-weight: bold;
  margin-right: 10px;
}


.local-pricing {
  background-color: #ecf0f1; 
  border: 1px solid #bdc3c7;
  padding: 30px;
  text-align: center;
}

.local-pricing p {
  font-size: 1.5em; 
  font-weight: bold;
   color: #c0392b; 
   
  margin-bottom: 15px;
}

.local-pricing strong {
  color: #c0392b; 
}

.local-pricing ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.local-pricing li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.local-pricing li::before {
  content: '•'; 
  color: #8e44ad; 
  margin-right: 8px;
  font-size: 1.2em;
}

main {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 10px auto;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(to bottom, #fffdfd, #fff8f1);
    border-radius: 12px;
    box-shadow: 1px 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1 1 300px; 
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card h2 {
    color: #4a2e2e;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5em;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px; 
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.1em;
    color: #444;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.btn {
    background: #0e4d51;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2em;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #287e3f;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .pricing-card {
        width: 90%;
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8em;
  }

  .benefits-list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 90%;
    padding: 24px;
  }

  .pricing-card h2 {
    font-size: 1.6em;
  }

  .price {
    font-size: 2em;
  }

  .pricing-card ul li {
    font-size: 1em;
  }

  .btn {
    font-size: 1em;
    padding: 10px 18px;
  }
}

@media (max-width: 468px) {
  .section-title {
    font-size: 1.5em;
  }

  .benefits-list ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefits-list li {
    font-size: 1em;
    padding: 12px;
  }

  .local-pricing p {
    font-size: 1.2em;
  }

  .local-pricing li {
    font-size: 1em;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-card h2 {
    font-size: 1.4em;
  }

  .price {
    font-size: 1.8em;
  }

  .btn {
    font-size: 1em;
    padding: 10px 16px;
  }
}
