/* Reset some default browser styles */
body, h1, h2, h3, h4, p, ul, ol, li, nav, a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
   
}

li {
    max-width: 80%; /* or use a percentage, like 80%, or any other value that suits your design */
    overflow-wrap: break-word; /* this will make sure the words wrap and don't overflow the container */
    padding: 0; /* this ensures there's no default padding */
}





/* General body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 20px;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px 0;
    !background-color: #333;
    color: #ffffff;
    border-bottom: 5px solid #444;
    background: #50b3a2;
    
}

header h1 {
    font-size: 2.5em;
}

header h2 {
    font-size: 1.5em;
    padding: 10px 0;
}

/* Navigation styles */
nav {
    margin-bottom: 20px;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 15px;
}

/* Main content styles */
main {
    padding: 20px;
}

h3 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin: 40px 0 20px;
    font-size: 1.6em;
}

h4 {
    font-size: 1.3em;
    margin: 20px 0;
}

ul, ol {
    list-style-position: inside;
    margin-left: 20px;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px;
    !background-color: #333;
    background: #50b3a2;
    color: #ffffff;
    border-top: 5px solid #444;
}


#pricing {
  background-color: #f4f4f4;
  padding: 20px;
}

#cta {
  background-color: #50b3a2;
  color: white;
  padding: 20px;
}



/* ... (rest of your existing CSS styles) ... */



/* Updated styles */
.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
   

.feature-image img {
    width: 40%;
    height: auto;
    display: block;  /* Ensures the image takes up the full width of the container and removes any default spacing */
}



/* Updated media query for better mobile responsiveness */
@media screen and (max-width: 768px) {
    body {
        margin: 5px;
        font-size: 0.9em;  /* Adjusted font size */
    }

    header h1 {
        font-size: 1.6em;
    }

    header h2 {
        font-size: 1em;
        padding: 5px 0;   /* Reduced padding */
    }

    main {
        padding: 10px;
    }

    h3 {
        font-size: 1.4em;
    }

    h4 {
        font-size: 1.1em;
    }

    




.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

}




