body {
  margin: 0;
  font-family: "Arial Rounded MT", sans-serif;
  font-weight: bold;
  background: linear-gradient(to bottom, #0f2c45, #e4e9ee);
  color: #fff;
  scroll-behavior: smooth;
}

header {
  background-color: #0f2c45;
  padding: 60px 20px 40px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

content {
  /* background-color: #0f2c45; */
  padding: 60px 20px 40px;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}
    
header section img {
    width: 70%;
    border-radius: 0.5rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

header h2 {
  font-size: 1.5rem;
  font-weight: normal;
  color: #d1e4f0;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #e3e3e3, #d7d7d7);
  color: #1a1a1a;
  border-radius: 8px;
  margin-top: -30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  animation: fadeUp 1s ease-in-out;
}

section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0f2c45;
  text-align: center;
}

ul li img {
    width: 10vw;
    height: auto;
    border-radius: 0.5rem;
    margin: 0.5rem;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bullet-point {
    transition: transform 0.3s ease;
    padding: 2% 0;
}

.bullet-point:hover {
    transform: translateY(-5px);
}

.bullet-group {
  padding-left: 0;
}

li {
    display: flex;
    align-items: center;
}

p  {
    font-weight: normal;
    line-height: 2rem;;
}

.circle {
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #386080;
    color: #fff;
    padding: 1.7rem 2rem;
    font-family: "Arial Rounded MT", sans-serif;
    font-weight: normal;
    font-size: 1.5rem;
}

.cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.cta a {
  background-color: #0f2c45;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta a:hover {
  background-color: #0b1f33;
  transform: scale(1.05);
}

.offers, .plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .offers, .plans {
    flex-direction: row;
  }
}

.card {
  flex: 1;
  /* background-color: #fff; */
  background: linear-gradient(145deg, #eaf2fa, #d6e3f3);
  border: 1px solid #d4e2ee;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  font-size: 1.4rem;
  color: #0f2c45;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
  padding: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features li {
  margin-bottom: 8px;
}

form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Arial Rounded MT", sans-serif;
}

form button {
  background-color: #0f2c45;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0b1f33;
}
    
footer {
  text-align: center;
  padding: 20px;
  background-color: #0a1b2e;
  color: #ccc;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}