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

a {
    color: #009688;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.header {
    background-color: #009688;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.header h1 {
    font-size: 50px;
    margin: 0;
}

.header p {
    font-size: 20px;
    margin-top: 20px;
}

/* Features Styles */
.features {
    background-color: #f2f2f2;
    padding: 50px 0;
    text-align: center;
}

.features h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.features li {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Pricing Styles */
.pricing {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 30px;
    margin-top: 8px;
    margin-bottom: 8px;
}

table {
    border-collapse: collapse;
    margin: auto;
    width: 80%;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #009688;
    color: #fff;
}

td {
    background-color: #f2f2f2;
}

/* Footer Styles */
.footer {
    background-color: #009688;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

.top-menu {
    background-color: #009688;
    color: #fff;
    height: 50px;
    display: flex;
    justify-content: flex-end;
}

.top-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu li {
    margin: 0 10px;
}

.top-menu a {
    color: #fff;
    display: block;
    line-height: 50px;
    padding: 0 10px;
    text-decoration: none;
}

.pricing {
    background-color: #f2f2f2;
    padding: 50px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 40px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.pricing-wrapper {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}



.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 30%;
    margin: 8px;
}

.pricing-card h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.price {
    font-size: 1.1em;
    margin-bottom: 20px;
}

ul {
    list-style: circle;
    margin: 0;
    padding: 0;
    text-align: left;
}

ul li {
    font-size: 1em;
    margin-bottom: 10px;
}

.btn {
    background-color: #009688;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00796b;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 800px) {
    .pricing-wrapper {
        flex-direction: column;
    }

    .pricing-card {
        width: 98%;
        margin: 8px;
    }
}