body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

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

.container h2 {
    margin-block-start: 2.5em;
}

.tagline {
    margin-block-start: 10px !important;
    font-size: 18px !important;
    color: #cf6c9c;
}

.container li {
    margin-block-start: 1em;
}

.logo {
    width: 100%;
    height: 200px;
    background: url('images/pmf.png') no-repeat center center;
    background-size: contain;
    margin: 25px 0px;
}

.workflow {
    width: 100%;
    height: 700px;
    background: url('images/pmf-workflow.png') no-repeat center center;
    background-size: contain;
}

.hr {
    margin-block-start: 3.5em;
    margin-block-end: 3.5em;
}

.banner {
    width: 100%;
    background: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.banner h1 {
    font-size: 3em;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.banner h2 {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: normal;
    margin-block-end: 1em;
}

.banner-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    max-width: 800px;
    text-align: left;
}

.banner-list li {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center; /* Center the icon vertically with the text */
    margin-block-start: 0em;
}

.banner-list i {
    color: #ff6f61; /* Use a color that indicates inquiry or concern */
    margin-right: 10px;
    font-size: 44px; /* Double the icon size */
    line-height: 1.2; /* Ensure the icon aligns well with multi-line text */
}

.pricing {
    padding: 40px 0;
    overflow-x: auto;
}

.pricing-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.pricing-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 275px;
    min-width: 275px;
}

.pricing-box i {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 10px;
}

.pricing-box h3 {
    font-size: 1.75em;
    margin-bottom: 10px;
    color: #cf6c9c;
}

.pricing-box p {
    font-size: 28px;
    margin-bottom: 20px;
    color: #007bff;
}

.pricing-box ul {
    padding: 0;
    margin: 0 0 20px;
}

.pricing-box ul li {
    font-size: 16px;
    margin-block-start: 0em;
}

.pricing-box .button {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.pricing-box .button:hover {
    background: #0056b3;
}

i.feature {
    display: none;
    font-size: 13px;
    font-weight: normal;
    margin-left: 10px;
    color: chocolate;
}

li.feature {
    text-align: left;
    margin-left: 25px;
    margin-right: 25px;
    font-size: 13px !important;
    color: #0d3d6c;
}

label.feature {
    display: block;
    margin-block-end: 25px;
}

.pricing-box-end {
    min-width: 25px;
    flex: 1;
    display: none;
}

@media screen and (max-width: 1330px) {
    .pricing-box-end {
        display: block;
    }
}

.footer {
    background: #333;
    color: #fff;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .footer-links li {
    display: inline;
}

.footer .footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-links a:hover {
    text-decoration: underline;
}

/* Contact Form Styling */
form {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    max-width: 80%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-block-start: 25px;
    margin-block-end: 25px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

form button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
    background-color: #0056b3;
}

form button[type="submit"]:active {
    background-color: #004494;
}
