/* General Styles */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f8f8f8;
    color: #333;
}

article {
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.1em;
    color: #666;
}

h2 {
    font-size: 2em;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5em;
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

strong {
    font-weight: bold;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#types-of-vpp {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column on smaller screens */
    gap: 30px;
    margin-bottom: 40px;
}

.vpp-type {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vpp-type h3 {
    margin-top: 0;
}

.vpp-type .icon {
    font-size: 2em;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #bbb;
}

/* AugforM Section */
#augform {
    margin-bottom: 40px;
}

.image-example {
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 6px;
    background-color: #fafafa;
}

.image-example h3 {
    margin-top: 0;
    color: #777;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.image-example figure {
    margin: 0;
}

.image-example img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.image-example figcaption {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9em;
}

/* Media Query for smaller screens */
@media (min-width: 600px) { /* Adjust the breakpoint as needed */
    #types-of-vpp {
        grid-template-columns: repeat(1, 1fr); /* Two columns on wider screens */
    }
}