/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f5f7fa;
}

.container {
    display: grid;
    justify-content: center;
    width: clamp(40vw, 800px, 60vw);
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

/* Header */
header {
    background-color: #e0fae1;
    padding: 40px 0;
}

header .logo {
    width: 150px;
    margin-bottom: 20px;
    margin-inline: auto;
}

header h1 {
    font-size: 2.5em;
    color: #005A2E;
}

header p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.header-image {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 10px;
}

/* Logo */
.logo, .footer-logo {
    width: 150px;
    height: auto;
}

/* Header Image */
.header-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

/* Feature Icons */
/* .features li img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
} */

/* Adjust the icon styles if needed */
.features li i {
    margin-bottom: 15px;
}

/* Subscription Image */
.subscription-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    background-color: #fff;
    padding: 40px 0;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: #005A2E;
}

.features ul {
    list-style: none;
}

.features li {
    margin-bottom: 30px;
    text-align: center;
}

.features li img {
    width: 80px;
    margin-bottom: 15px;
}

.features h3 {
    font-size: 1.5em;
    color: #333;
}

.features p {
    font-size: 1em;
    color: #666;
}

/* Subscription Section */
.subscription {
    background-color: #e0fae1;
    padding: 60px 0;
}

.subscription h2 {
    font-size: 2em;
    color: #005A2E;
}

.subscription p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.subscription-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    border-radius: 10px;
}

#checkout-button {
    background-color: #005A2E;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

#checkout-button:hover {
    background-color: #004725;
}

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

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
    margin-inline: auto;
}
/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
    .features ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .features li {
        width: 45%;
        margin-bottom: 40px;
    }
    
    header, .subscription {
        text-align: center;
    }
}