body {
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    padding: 0;
    color: #333;
    /* Dark grey for text */
    background-color: #f4f4f4;
    max-width: 1000px;
}


header {
    text-align: center;
    padding: 40px 20px;
    /* Increased padding */
}

.logo {
    max-width: 150px;
    /* Adjust logo width as needed */
}

h1 {
    font-size: 2.8em;
    font-weight: 600;
    /* Semi-bold heading */
    text-align: center;
    margin-bottom: 25px;
    color: #228b22;
    /* Darker blue-gray heading color */
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.6em;
    font-style: italic;
    text-align: center;
    font-weight: 500;
    margin: 35px 0;
    color: #228b22;
    /* Muted gray for quotes */
}

a {
    color: #228b22;
    /* Muted gray for quotes */
    text-decoration: none;
}

a {
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

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


main a {
    color: #228b22;
}

main a:hover {
    text-decoration: underline;
}



hr {
    margin: 50px 0;
    border: 0;
    border-top: 1px solid #000;
    /* Subtle gray line */
}

/* Responsive Design (adjust as needed) */
@media (max-width: 768px) {
    body {
        margin: 20px 20px 0 20px;
    }

    h1 {
        font-size: 2.2em;
    }

    p {
        font-size: 1.1em;
    }

    .quote {
        font-size: 1.4em;
    }
}

.author-name {
    margin-top: 40px;
    /* Space above the author name */
    margin-bottom: 40px;
    text-align: left;
    /* Center the name */
    font-weight: bold;
    /* Make the name bold */
    font-size: 1.1em;
    /* Adjust font size as needed */
    color: #555;
    /* A slightly darker gray for the name */
}

.author-name:before {
    content: '-';
}

/* Responsive adjustments (if needed) */
@media (max-width: 768px) {
    .author-name {
        font-size: 1em;
        /* Slightly smaller on smaller screens */
    }
}


footer {
    background-color: #333;
    /* Dark grey for footer */
    color: #fff;
    /* White text for footer */
    padding: 20px;
    text-align: center;
    border-radius: 10px 10px 0 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0 0 10px;
}

@media (max-width: 800px) {
    footer {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 801px) {
    footer a+a:before {
        content: '|';
        margin-right: 10px;
    }
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0 20px 80px 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    transition: transform 0.2s;
    /* Add filter transition */
}

.cta-intro {
    text-align: center;
    margin-bottom: 20px;
    /* Space between text and buttons */
    padding: 0 20px;
}

.cta-intro p {
    font-size: 1.1em;
    /* Adjust font size as needed */
    color: #555;
    /* Adjust color as needed */
}


@media (hover: hover) and (pointer: fine) {
    .cta-buttons a:hover {
        transform: scale(1.1);
    }
        
    .page-link:hover {
        background-color: #e9ecef;
        /* Change background color on hover */
        border-color: #ced4da;
        /* Change border color on hover */
        text-decoration: none;
    }

}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    padding: 10px;
}

.grid-item {
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}

.grid-item .photo {
    background-repeat: no-repeat;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: top center;
}

.grid-item h2 {
    padding: 20px;
}

main img.photo {
    width: 100%;
    height: auto;
}


.pagination {
    display: flex;
    /* Arrange list items horizontally */
    list-style: none;
    /* Remove default list styling */
    padding: 0;
    margin: 0;
    justify-content: center;
}

.page-item {
    margin-right: 5px;
    /* Add spacing between list items */
}

.page-link {
    display: block;
    /* Make links fill the list item */
    padding: 8px 12px;
    /* Add padding to the links */
    border: 1px solid #dee2e6;
    /* Add a border */
    text-decoration: none;
    /* Remove underlines from links */
    color: #228b22;
    /* Set link color */
    background-color: #fff;
    /* Set background color */
    border-radius: 5px;
    /* Round the corners */
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    /* Smooth transitions */
}

.page-item.active .page-link {
    background-color: #228b22;
    /* Highlight the active page */
    border-color: #007bff;
    color: #fff;
    /* Change text color for active page */
}


.summary{
    font-size: 13px;
    line-height: 18px;
}