.standard-layout {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}   

.standard-layout content {
    flex: 1;
}

footer {
    background-color: #49D1D9 !important;
    padding: 0 60px;
    margin-top: auto; 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    color: #FFFFFF;
    font-family: 'Narnoor', serif !important;
    position: relative;
    min-height: 110px;
    height: 110px;
    overflow: hidden;
    flex-shrink: 0; 
}

.footer-left {
    position: absolute;
    left: -35px !important; 
    bottom: -65px;   
    line-height: 0;
    z-index: 1;
}

.ocean-waves {
    height: 240px;   
    width: auto;
    display: block;
    opacity: 0.5;    
}

.copyright {
    font-family: 'Narnoor', serif !important;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 2;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 2;
    padding-bottom: 10px;
}

.about-link {
    font-family: 'Narnoor', serif !important;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #1a237e; 
}

.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: #FFFFFF;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #1a237e; 
}

@media (max-width: 768px) {
    footer {
        padding: 20px;
        min-height: 100px;
        height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .footer-right {
        align-items: center;
        padding-bottom: 20px;
    }

    .footer-left {
        left: -25px !important; 
        bottom: -40px;          
    }

    .ocean-waves {
        height: 150px;          
    }

    .copyright {      
        bottom: 5px;
    }

    .about-link {
        font-size: 20px;       
    }

    .social-icons a {
        font-size: 18px;        
    }
}