.responsive-logo {
    width: 100px;
    height: auto;
}

@media (max-width: 768px) {
    .responsive-logo {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .responsive-logo {
        width: 60px;
    }
}

.responsive-heading {
    font-size: 2.5rem; /* Default size for large screens */
    line-height: 1.2;
}

@media (max-width: 992px) { /* For tablets */
    .responsive-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) { /* For small tablets and large phones */
    .responsive-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 576px) { /* For mobile devices */
    .responsive-heading {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}