html, body { 
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #303030;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 24px;
}

.container a {
    color: #4178bb;
    text-decoration: none;
    font-weight: 600;
}

.container ul li {
    list-style-type: disc;
}

.logo {
    margin: 24px 0;
}

hr {
    border-top: 1px solid #303030;
    margin: 24px 0;
}


h2 {    
    color: black;
    font-weight: bold;
}

blockquote {
    border-color: #4178bb;
    padding: 0 0 0 24px;
}

.footer {
    text-align: center;
    padding: 0px;
}

h2 a.nav {
    display: block;
    padding: 6px 12px;
    background-color: #4178bb;
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;;
    text-align: right;
    /* color: #303030; */
    text-decoration: none;
}

h2 a:hover {
    color: white;
}

h2 a:after {
    content: "▶";
    margin-left: 12px;
    color: white;
    /* color: #4178bb; */
}

h2 a.back {
    text-align: left;
    color: white;
}

h2 a.back:after {
    content: "";
}
h2 a.back:before {
    content: "◀";
    margin-left: 12px;
    color: white;
    /* color: #4178bb; */
}

details {
    margin: 0;
}

details summary {
    list-style: none;    
    cursor: pointer;    
}

details .more {
    /* color: #808080; */
    font-size: 14px;
}

details .more:before {
    content: "[ learn more ]";
}


details div {
    margin: 0 0 0 24px;
    padding-left: 24px;
    border-left: 4px solid #4178bb;
}

details summary::-webkit-details-marker {
    display: none;
}
/* 
img.photo {
    display: block;
    margin-bottom: 12px;
    max-width: 320px;
    max-height: 400px;
    box-shadow: 2px 2px 6px #303030;
} */

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* Adjust the width as needed */
    max-width: 300px; /* Control the width of each box */
    margin: 20px; 
    /* box-shadow: 1 2px 4px rgba(0,0,0,0.1); */
    padding: 20px; /* Adds some padding inside each box */
    /* border: 1px solid #4178bb; */
    box-sizing: border-box; /* Ensures padding does not affect the overall width */
}

.photo {
    width: 100%; /* Makes the image responsive */
    max-width: 300px; /* Controls the maximum size of the image */
    box-shadow: 2px 2px 6px #303030;
    height: auto; /* Keeps the aspect ratio of the image */
    margin-bottom: 12px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the boxes on the page */
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px; /* Adjusts the space between the boxes */
    }
}

.info {
    text-align: center;
    padding: 16px 8px;
}

.note {
    color: #808080;
    font-size: 14px;
}