.committee-card {
    border: none;
    margin-bottom: 20px;
}

.committee-header {
    background-color: #800033;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 12px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.committee-body {
    border: 1px solid #ddd;
    border-top: none;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    background: #fff;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.committee-body ul {
    padding-right: 20px;
    margin: 0;
}

.committee-body li {
    margin-bottom: 6px;
}

.goals-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

/* The top arrow */
.section-title::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #800020;
    /* Maroon Arrow */
}

.goal-item {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #d8d1c9;
    /* Beige/Tan color from image */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.goal-circle:hover {
    transform: translateY(-10px);
}

/* The inner semi-transparent circle */
.goal-circle::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-color: rgba(255, 255, 255, 0.4);
    /* Semi-transparent white */
    border-radius: 50%;
}

.goal-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
}

.goal-icon svg {
    width: 100%;
    height: 100%;
}

/* The bottom arrow */
.goal-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #d8d1c9;
    /* Arrow color matches the circle */
    margin-bottom: 20px;
}

.goal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.goal-description {
    font-size: 1rem;
    color: #555;
    padding: 0 15px;
}

.spec-nav {
    background: #8a1839;
    /* padding-block: 24px; */
}

@media (min-width: 992px) {
    .spec-nav {
        position: absolute;
        inset-inline: 0;
        top: -110px;
        background: #8a1839;
        padding-block: 8px;
    }
}

@media (max-width: 991px) {
    .spec-nav a{
        padding-block: 12px;
        border: 1px solid #ffffff2e;
        flex: 1 0 50%;
    }
}

.spec-nav a {
    color: #fff;
    padding-block: 12px;
}

 .card-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .custom-card {
            width: 250px;
            margin: 20px;
            border-radius: 0.5rem;
            border: 1px solid #dee2e6;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
            text-align: center;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        }

        .card-header-custom {
            position: relative;
            background-color: white;
            padding: 40px 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid #dee2e6;
            min-height: 120px;
            font-weight: bold;
            color: #8B0000;
        }

        .diamond {
            position: absolute;
            top: -12.5px; /* Half of the diamond's height (25px / 2) */
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 25px;
            height: 25px;
            background-color: #8B0000;
            border: 1px solid #dee2e6;
            border-bottom: none;
            border-right: none;
            z-index: 10;
        }

        .card-footer-custom {
            background-color: #f5f5f5;
            padding: 15px;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #495057;
        }

        .bg-light-gray {
            background-color: #e9ecef;
        }