.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    grid-gap: 2%; /* Defines the gap between the columns */
    padding: 20px;
    margin: 0 auto;
	width: 100%;
	
}

.category {
    background: #ff6600;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
	align-items: center; /* Align items vertically in the center */
	
}

.category-logo {
    flex: 0 0 100px; /* Logo width */
    padding-right: 20px; /* Space between logo and text */
}

.award-icon {
    width: 100%;
    height: auto;
}

.category-content {
    flex: 1; /* Takes up the rest of the space */
	display: flex; /* Enables flexible box layout directly within content */
    flex-direction: column; /* Stacks content vertically */
    justify-content: center; /* Center content vertically */
}
.category-title {
    font-size: 32px; /* Example font size, adjust as needed */
    color: #fff; /* Sets the color of the title */
    margin-bottom: 10px; /* Adds space below the title */
    font-weight: bold; /* Makes the title bold */
}
.category-description {
    font-size: 14px; /* Sets the font size */
    color: #0005FF;/* Sets the color to a lighter shade of black */
    line-height: 1.6; /* Increases line spacing for readability */
    margin-top: 0; /* Removes top margin */
    margin-bottom: 10px; /* Adds bottom space for separation from other elements */
}
.award {
	width: 500px; /* Set the width of the container */
    height: 500px; /* Set the height of the container */
    background-image: url('../images/logo_circle.jpg'); /* Link to your background image */
    background-size: cover; /* Cover the entire area of the container without stretching */
    background-position: center; /* Center the background image within the element */
    background-repeat: no-repeat; /* Ensure the image does not repeat */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Make text color white for better visibility against a dark background */
}
@media (max-width: 768px) {
    .categories {
        grid-template-columns: 1fr; /* Full width for each category */
        grid-gap: 10px;
        padding: 10px;
    }

    .category-logo {
        flex: 0 0 80px; /* Adjust logo size for smaller screens */
    }

    .award-icon {
        width: 100%;
    }

    .category {
        flex-direction: row; /* Keep side-by-side layout even on mobile */
    }
    .category-title {
    font-size: 22px; /* Example font size, adjust as needed */
    color: #fff; /* Sets the color of the title */
    margin-bottom: 10px; /* Adds space below the title */
    font-weight: bold; /* Makes the title bold */
}
.category-description {
    font-size: 11px; /* Sets the font size */
    color: #0005FF;/* Sets the color to a lighter shade of black */
    line-height: 1.6; /* Increases line spacing for readability */
    margin-top: 0; /* Removes top margin */
    margin-bottom: 10px; /* Adds bottom space for separation from other elements */
}
}
