* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
*{
    scrollbar-color: #9094b0 #2f3454 !important;
    scrollbar-width: thin !important;
}
 
.main-footer {
    width: 100% !important;
    min-height: 256px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 36px 140px !important;
    background-color: #0b162b !important;
            
}
 
.footer-container {
    display: flex !important;
    width: 100% !important;
    max-width: 1160px !important;
    align-items: flex-start !important;
            justify-content: space-between !important ;
    gap: 40px !important;
    padding: 0 !important;
}
 
.footer-brand {
    display: flex !important;
    width: 224px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 21px !important;
    flex-shrink: 0 !important;
}
 
.footer-logo {
    display: flex;
    align-items: center;
    width: 100%;
}
 
.genx-logo {
    width: 158px;
    height: 52px;
    flex-shrink: 0;
}
 
.social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}
 
.social-icons {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}
 
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
 
.social-link:hover {
    transform: scale(1.2);
}
 
.powered-by {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
}
 
.powered-text {
    color: #828282;
    font: 500 16px/150% Inter, sans-serif;
}
 
.sat-logo {
    width: 86px;
    height: auto;
}
 
.footer-links {
    display: flex !important;
    width: 315px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
    flex-shrink: 0 !important;
}
 
.links-title {
    color: rgba(255, 255, 255, 0.39);
    font: 400 14px/130% Inter, sans-serif;
    margin: 0;
}
 
.links-grid {
    display: flex;
    align-items: flex-start;
    gap: 67px;
}
 
.links-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
 
.footer-link {
    color: #fff;
    font: 400 16px Inter, sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}
 
.footer-link:hover {
    color: #08c076;
}
 
.footer-contact {
    display: flex !important;
    width: 282px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 9px !important;
    flex-shrink: 0 !important;
}
 
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
 
.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
 
.footer-contact .contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
 
.contact-text {
    color: #fff;
    font: 400 14px/130% Inter, sans-serif;
    flex: 1;
    word-break: break-word;
}
 
/* Tablet Responsive (991px and below) */
@media (max-width: 991px) {
    .main-footer {
        padding: 36px 60px !important;
        min-height: auto !important;
    }
 
    .footer-container {
        flex-wrap: wrap !important;
        gap: 40px !important;
    }
 
    .footer-brand {
        width: 100% !important;
        max-width: 300px !important;
    }
 
    .footer-links {
        width: auto !important;
        flex: 1 !important;
        min-width: 280px !important;
    }
 
    .footer-contact {
        width: 100% !important;
        max-width: 350px !important;
    }
 
    .contact-text {
        max-width: 290px;
    }
}
 
/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .main-footer {
        padding: 32px 40px !important;
    }
 
    .footer-container {
        flex-direction: column !important;
        gap: 32px !important;
        align-items: center !important;
    }
 
    .footer-brand {
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
    }
   
    .footer-logo {
        justify-content: center;
    }
   
    .social-links {
        align-items: center !important;
    }
   
    .social-icons {
        justify-content: center;
    }
   
    .powered-by {
        justify-content: center;
    }
 
    .footer-links {
        width: 100% !important;
        align-items: center !important;
    }
   
    .links-title {
        text-align: center;
    }
 
    .links-grid {
        gap: 50px;
        justify-content: center;
    }
   
    .links-column {
        align-items: center !important;
    }
 
    .footer-contact {
        width: 100% !important;
        max-width: 350px !important;
        align-items: center !important;
    }
 
    .contact-item {
        justify-content: center !important;
        align-items: center !important;
        width: auto;
    }
    
    .contact-text {
        text-align: center;
    }
}
 
/* Mobile Portrait (640px and below) */
@media (max-width: 640px) {
    .main-footer {
        padding: 24px 20px !important;
    }
 
    .footer-container {
        gap: 28px !important;
    }
 
    .footer-brand {
        align-items: center !important;
        text-align: center;
    }
 
    .genx-logo {
        width: 140px;
        height: 46px;
    }
 
    .social-links {
        align-items: center !important;
    }
 
    .social-icons {
        justify-content: center;
        gap: 28px;
    }
 
    .powered-by {
        justify-content: center;
    }
 
    .powered-text {
        font-size: 14px;
    }
 
    .sat-logo {
        width: 76px;
    }
 
    .footer-links {
        align-items: center !important;
        text-align: center;
    }
 
    .links-title {
        text-align: center;
        width: 100%;
    }
 
    .links-grid {
        gap: 40px;
        justify-content: center;
        width: 100%;
    }
 
    .links-column {
        align-items: center !important;
    }
 
    .footer-link {
        font-size: 15px;
    }
 
    .footer-contact {
        justify-content: center;
        max-width: 320px !important;
    }
 
    .contact-item {
        justify-content: center !important;
        align-items: center !important;
        width: auto;
    }
 
    .contact-text {
        font-size: 13px;
        text-align: center;
    }
}
 
/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .main-footer {
        padding: 20px 16px !important;
    }
 
    .footer-container {
        gap: 24px !important;
    }
 
    .genx-logo {
        width: 130px;
        height: 42px;
    }
 
    .social-icons {
        gap: 24px;
    }
 
    .powered-text {
        font-size: 13px;
    }
 
    .sat-logo {
        width: 70px;
    }
 
    .links-grid {
        gap: 20px;
        width: 100%;
    }
 
    .links-column {
        width: 100%;
        gap: 8px;
        align-items: center !important;
    }
 
    .footer-link {
        font-size: 14px;
    }
 
    .footer-contact {
        gap: 12px !important;
        max-width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }
 
    .contact-item {
        flex-direction: row;
        align-items: center !important;
        justify-content: center !important;
        width: auto;
    }
 
    .contact-icon {
        flex-shrink: 0;
        margin-top: 2px;
    }
 
    .contact-text {
        font-size: 12px;
        line-height: 140%;
        text-align: center;
    }
}
 
/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .main-footer {
        padding: 16px 12px !important;
    }
 
    .genx-logo {
        width: 120px;
        height: 39px;
    }
 
    .social-icons {
        gap: 20px;
    }
 
    .social-link {
        width: 20px;
        height: 20px;
    }
 
    .social-link svg {
        width: 20px;
        height: 20px;
    }
 
    .powered-text {
        font-size: 12px;
    }
 
    .sat-logo {
        width: 65px;
    }
 
    .footer-link {
        font-size: 13px;
    }
 
    .contact-text {
        font-size: 11px;
    }
 
    .contact-icon {
        width: 20px;
        height: 20px;
    }
}
