.astrogpt-footer-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 2rem 0;
    width: 100%;
    max-width: 1280px; /* Added max-width of 1280px */
}

.astrogpt-footer-links-column {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    box-sizing: border-box;
}

.astrogpt-footer-link-heading {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #E8E8E8;
}

.astrogpt-footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.astrogpt-footer-links-list div {
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
}

.astrogpt-footer-links-list div a {
    color: #8C8C8C;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.2;
}

.astrogpt-footer-links-list div a:hover {
    text-decoration: underline;
}

.astrogpt-footer-links-list a {
    color: #8C8C8C; /* Updated color for links */
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
}

.astrogpt-footer-links-list a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .astrogpt-footer-links-container {
        flex-direction: column;
        width: 100%;
    }
    
    .astrogpt-footer-links-column {
        margin-bottom: 20px;
        width: 100%;
    }
}