body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.key-features ul, .benefits ul, .subscription ul {
    list-style: none;
    padding: 0;
}

.key-features ul li, .benefits ul li, .subscription ul li {
    margin-bottom: 10px;
}

.cta {
    text-align: center;
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #555;
}

  /* Style for both popups */
  .popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px; /* Adjust as needed */
    width: 100%;
    text-align: center;
}

/* Style for close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Style for form inside popups */
.popup-content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Additional styling for the Learn More popup */
#learnMorePopup {
    background-color: #f0f0f0; /* Change background color as needed */
}

/* Additional styling for the Contact Us popup */
#contactUsPopup {
    background-color: #e0e0e0; /* Change background color as needed */
}
