.urgent-box {
    position: relative;
    border: 2px solid red; /* Matching the red theme */
    padding: 70px 10px 10px 10px;  /* Adjusted padding to accommodate the icon */
    margin: 10px;
    background-color: transparent;
    width: calc(100% - 24px);
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center; /* Ensuring consistency in capitalization */
}

.urgent-box::before {
    content: '\f0a1';  /* Unicode for FontAwesome's fa-bullhorn */
    font-family: "Font Awesome 5 Free"; /* Ensure FontAwesome is correctly imported */
    font-weight: 900;  /* Necessary for solid icons in FontAwesome */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%); /* Centers the icon */
    font-size: 5em;  /* Large icon size */
    color: red; /* Matching the red theme */
    opacity: 0.5;
}
.urgent-box:hover {
      transform: scale(1.05);
}