body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.breadcrumb {
    
    max-width: 1200px;
    margin: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb span {
    color: #666;
    margin: 0 8px;
}

.ic-categories {
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%; /* Ensure all cards have the same height */
}

.category-card a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.category-card img {
    width: 75%;
    height: 75%; /* Adjust this value as needed */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    margin-bottom: 1rem;
    border-radius: 8px;
}

.category-card p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1rem 0;
    flex-grow: 1; /* Allows the text to take up remaining space */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    h1 {
        font-size: 1.5rem;
    }

    .category-card p {
        font-size: 1rem;
    }
}