.image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    object-position: center center;
}


/* pdf download */
.pdf-download-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0d4a2c 0%, #1a6d3f 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(13, 74, 44, 0.3);
    cursor: pointer;
    z-index: 1000;
    border: none;
    transition: transform 0.2s;
    text-decoration: none;
}

.pdf-download-btn:hover {
    transform: scale(1.1);
    color: #fff;
}