<style>
    a:hover div {
      color: red !important;
    }
    a:hover div div {
      color: white !important;
    }
.card {
    background-color: black;
    color: white;
    transition: 0.3s;
}

.card:hover {
    background-color: #4A4A4A;
    color: white;
}

.card-image {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s ease;
}

.card-image:hover {
    opacity: 0.6; /* reduce opacity on hover */
}

.Header__homeNavbarFixed .Header__searchSubCont {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: #333;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: Header__slideInDown;
    animation-name: Header__slideInDown;
    -webkit-box-shadow: 0 .1875rem .9375rem 0 rgba(196, 196, 196, 1);
    -moz-box-shadow: 0 .1875rem .9375rem 0 rgba(196,196,196,1);
    box-shadow: 0 .1875rem .9375rem 0 rgb(0 0 0);
    z-index: 4;
}

.Footer__footer {
       border-top: .0625rem solid #000000;
}

.Button__neutral:hover {
    color: var(--color-brand);
    background-color: #ff0000;
}

.Button__neutral {
    border: .0625rem solid #ff0000;
    color: #ff0000;
    transition: all .2s 
ease;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}

.item-card {
    width: 30%;
    min-width: 260px;
    text-decoration: none;
    color: black;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.item-card:hover {
    transform: scale(1.03);
}

.item-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.item-card:hover img {
    opacity: 0.85;
}

.item-text {
    padding: 12px 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 48rem) {
    .Header__homeNavbarFixed .Header__searchLink {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 1rem;
        background-color: #333;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: Header__slideInDown;
        animation-name: Header__slideInDown;
        -webkit-box-shadow: 0 .1875rem .9375rem 0 rgba(196, 196, 196, 1);
        -moz-box-shadow: 0 .1875rem .9375rem 0 rgba(196,196,196,1);
        box-shadow: 0 .1875rem .9375rem 0 rgb(0 0 0);
    }
}
.add-ticket-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-left: 20px;
    margin-right: 20px;

}

.left-column {
    flex: 1;
    min-width: 250px;
}

.right-column {
    min-width: 200px;
    text-align: right;
}

/* Red Button */
.add-ticket-btn {
    background-color: #d60000;
    color: white;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s;
}

.add-ticket-btn:hover {
    background-color: #b00000;
}

/* Responsive Behavior */
@media (max-width: 600px) {
    .left-column {
        text-align: center;
        width: 100%;
    }
    .right-column {
        text-align: center;
        width: 100%;
    }
}

<style>
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

/* Card links */
.contact-container a {
    text-decoration: none;
    width: 33%;
    min-width: 280px;
    display: block;
    box-sizing: border-box;
}

/* Card box */
.contact-card {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    color: white;
    height: 100%;
    transition: 0.2s;
}

/* Responsive: Mobile increase width to 90% */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

/* Card links */
.contact-container a {
    text-decoration: none;
    width: 33%;
    min-width: 280px;
    display: block;
    box-sizing: border-box;
}

/* Card box */
.card {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    color: white;
    height: 100%;
    transition: 0.2s;
}

/* Responsive: Mobile increase width to 90% */
@media (max-width: 600px) {
    a[style*="width: 33%"] {
        width: 98% !important;
        margin-left: auto;
        margin-right: auto;
    }
}

</style>
