.header .top-bar {
    background-color: var(--dark-bg);
    padding: 10px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .top-bar .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Styling */
.contact-info span {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Social Links Styling */
.social-links a {
    font-size: 3rem;
    color: rgb(236, 38, 38);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: blue;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info span {
        font-size: 1.2rem;
        margin-right: 0;
    }

    .top-bar .flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}