.follow-us-section {
    position: relative;
    z-index: 1;
}

.follow-us-section .social-links {
    display: flex;
    flex-direction: row; /* stack links vertically */
    gap: 15px;
    margin-top: 10px;
}

/*.follow-us-section .social-links a {
    color: #d28a07; /* Bootstrap link blue */
   /* text-decoration: underline;
    position: static !important; /* kills navbar absolute positioning */
/*} */
.social-links a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d28a07; /* Bootstrap primary blue */
}