.footer{
    width: 100%;
    height: 50vh;
    
}

.footer-wrapper {
    background-color: var(--darkblue-color);
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: var(--yellow-color);
}

.footer-content {
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 280px;
    margin-bottom: 20px;
}

.widget {
    padding: 15px;
}

.title-widget {
    color: var(--yellow-color);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content-widget{
    color: var(--white-color);
}

.content-widget ul {
    list-style: none;
    padding: 0;
}

.content-widget ul li {
    padding: 5px 0;
  display: table;
  border-top: 1px solid var(--lightdarkblue-color);
  width: 100%;
  padding-bottom: 15px;
  padding-top: 15px;
}

.content-widget ul li:last-child {
    border-bottom: none;
}

.content-widget ul li a {
    text-decoration: none;
    color: var(--lightblue-color);
    transition: color 0.3s;
}

.content-widget ul li a:hover {
    color: var(--yellow-color);
}

.footer-logo {
    max-width: 250px;
    display: block;
    margin: 10px auto;
    border-radius: 50%;
    border-style: double;
}

.footer-separator {
    border-top: 1px solid var(--silver-color);
}

.footer-credit {
    text-align: center;
    font-size: 14px;
    color: var(--silver-color);
    padding-top: 3em;
}

.footer-credit a {
    color: var(--lightblue-color);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--lightblue-color);
}

.card p{
    color: var(--black-color);
}

.footer-wrapper .widget a {
    color: var(--silver-color);
}

.info-lists{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
} 

