/* Modern footer styling */
.Footer {
    background-color: #1c1c1c; /* Dark grey background */
    color: #e0e0e0; /* Light grey text color */
    padding: 40px 20px;
    font-family: 'Arial', sans-serif; /* Modern font */
    text-align: center;
}

.Footer__Wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.Footer__Links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.Footer__Links li {
    margin: 0;
}

.Footer__Links a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold; /* Bold text */
}

.Footer__Links a:hover {
    color: #ffffff; /* White color on hover */
    text-decoration: underline;
}

.Footer__SocialIcons {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.Footer__SocialIcons li {
    margin: 0;
}

.Footer__SocialIcons a {
    display: inline-block;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.Footer__SocialIcons img {
    border-radius: 50%;
}

.Footer__SocialIcons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.Footer__Copyright,
.Footer__Disclaimer {
    margin: 10px 0;
    color: #b0b0b0; /* Slightly lighter grey for disclaimers */
    font-size: 14px;
}

.Footer__Copyright strong,
.Footer__Disclaimer strong {
    font-weight: bold; /* Bold text */
}