/* Basic styling for the footer */
footer {
    background-color: #0b1622;
    color: rgb(226, 16, 16);
    text-align: center;
    padding: 30px;
    width: 100%;
    position: relative;
    bottom: 0;
}

/* Icon styles in the footer */
footer .icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .icons li {
    display: inline;
}

footer .icons a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}

footer .icons a:hover {
    color: #f39c12; /* Change color on hover */
}

/* Phone number styling */
footer h3 {
    margin-top: 20px;
    font-size: 18px;
    color: white;
    margin-right: 20px;
}