/* Company Name */
.company-name {
    font-family: var(--font-primary);
    font-weight: 900;
    font-style: normal;
    font-size: clamp(1rem, 1.2vw, 3rem);
    margin-left: 15px;
    color: var(--color-text);
    text-transform: uppercase; /* Ensure consistency in appearance */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
.company-name {
    font-size: clamp(0.8rem, 2vw, 4rem);
}
}