.responsive-heading {
    color: #92fa74; /* Green color for "About" */
    font-size: 4rem; /* Default size for large screens */
    line-height: 1.2;
    margin-top: 0;
    text-transform: none;
    text-align: left; /* Align text to the left */
    position: relative; /* Enable positioning */
    top: -60px; /* Move 20px down */
    left: 208px; /* Move 30px to the right */
}

.responsive-heading strong {
    color: white; /* White color for "us" */
}

/* Responsive adjustments */
@media (max-width: 1399px) {
    .responsive-heading {
        font-size: 3.5rem; /* Slightly smaller for large tablets and small desktops */
        top: -60px; /* Adjust positioning for large tablets */
        left: 10px; /* Adjust positioning for large tablets */
    }
}

@media (max-width: 992px) {
    .responsive-heading {
        font-size: 3rem; /* Smaller for tablets */
        top: -40px; /* Adjust positioning for tablets */
        left: -25px; /* Adjust positioning for tablets */
    }
}

@media (max-width: 768px) {
    .responsive-heading {
        font-size: 2.5rem; /* Smaller for small tablets and large phones */
        top: -20px; /* Adjust positioning for small tablets */
        left: -5px; /* Adjust positioning for small tablets */
    }
}

@media (max-width: 576px) {
    .responsive-heading {
        font-size: 3rem; /* Smaller for mobile phones */
        top: -30px; /* Adjust positioning for mobile */
        left: 34px; /* Adjust positioning for mobile */
    }
}