/* Container and Layout */
.site-wrapper {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header Section */
.custom-header {
    background-color: #002c5f; /* Your Brand Navy */
    color: white;
    padding: 30px 15px;
    text-align: center;
}
.custom-header h1 {
    margin: 0;
    font-size: 26px;
    text-transform: uppercase;
}

/* Category Grid */
.category-body {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 50px 20px;
    text-align: center;
}

/* Button Styling */
.category-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.category-item:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 140px;
    height: 140px;
    background-color: #f15a24; /* Your Brand Orange */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(241, 90, 36, 0.25);
}

.icon-circle svg {
    width: 70px;
    height: 70px;
    fill: white;
}

.category-label {
    color: #002c5f;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
}

/* Footer Section */
.custom-footer {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 60px;
}
.footer-text {
    font-size: 15px;
    color: #555;
    margin: 5px 0;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 30px 10px;
    }
    .icon-circle {
        width: 110px;
        height: 110px;
    }
    .icon-circle svg {
        width: 55px;
        height: 55px;
    }
    .category-label {
        font-size: 15px;
    }
}