/* Catalogue container styling */
.catalogue {
    margin-top: 3px; /* Space above the catalogue */
    text-align: center; /* Center align all text in the catalogue */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Shadow around the main div */
    padding: 15px; /* Padding for main div */
}

/* Individual catalogue item styling */
.catalogue-item {
    display: flex; /* Use flex to align icon and title */
    align-items: center; /* Center align items vertically */
    justify-content: center; /* Center align items horizontally */
    margin-bottom: 15px; /* Space between each catalogue item */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Shadow around each item */
    padding: 10px; /* Padding inside each item */
    border-radius: 5px; /* Rounded corners for the item */
}

/* Icon styling */
.catalogue-icon {
    width: 30px; /* Small size for the icon */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between icon and title */
}

/* Title styling */
.catalogue-title {
    color: #034d8c; /* Color for the link */
    text-decoration: none; /* Remove underline from link */
    font-weight: bold; /* Bold title */
    font-size: 1.2em; /* Slightly larger title */
}

/* Hover effect for title */
.catalogue-title:hover {
    text-decoration: underline; /* Underline on hover */
}
