/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Top Bar Styles */
.top-bar {
    background-color: #f0f0f0;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    text-decoration: none;
    color: #333;
    margin-right: 10px;
}

.top-bar-right img {
    width: 20px;
    height: 20px;
}

/* Main Header Styles */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

/* Content Styles */
.content {
    padding: 20px;
    text-align: center;
    background-color: #fff;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.content h1, .content h2 {
    color: #fff;
}

.content p, .content ul {
    text-align: left;
    margin: 10px 0;
    color: #333;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content a {
    color: #98258b;
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 20px auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: #98258b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #7a1e70;
}

/* Success and Error Messages */
.success, .error {
    color: #fff;
    padding: 10px;
    margin: 20px auto;
    width: 80%;
    border-radius: 5px;
    text-align: center;
}

.success {
    background-color: #4caf50;
}

.error {
    background-color: #f44336;
}

/* Highlights Styles */
.highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.highlight {
    background-color: #98258b;
    color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    flex: 1;
    max-width: 300px;
    text-align: left;
}

/* Subscription Options Styles */
.subscription-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.option {
    background-color: #98258b;
    color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.option h2 {
    margin-top: 0;
}

.option .price {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.option ul {
    list-style-type: none;
    padding: 0;
}

.option ul li {
    margin: 5px 0;
}

.option button {
    background-color: #005f73;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.option button:hover {
    background-color: #004654;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 50px;
}

.footer-column {
    width: 23%;
    min-width: 250px; /* Ensures that the columns don't shrink too much */
    box-sizing: border-box;
}

.footer-column h3 {
    margin-top: 0;
    color: #98258b;
}

.footer-column p, .footer-column ul, .footer-column form {
    margin: 10px 0;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column form input, .footer-column form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

.footer-column form button {
    background-color: #98258b;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.footer-column form button:hover {
    background-color: #7a1e70;
}

.footer-column a {
    color: #98258b;
    display: block;
    margin-top: 10px;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-column {
        width: 48%;
        margin-bottom: 20px;
    }

    .option, .highlight {
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    .footer-column {
        width: 100%;
    }

    .option, .highlight {
        max-width: 100%;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    .logo img {
        max-width: 100px; /* Adjust the size for smaller screens */
    }
}
