/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.5;
}

/* Container and layout utilities */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 1024px) {
    .lg\:px-5 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (min-width: 1536px) {
    .\32xl\:px-20 {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-x-20 {
    column-gap: 5rem;
}

.gap-x-10 {
    column-gap: 2.5rem;
}

.gap-x-5 {
    column-gap: 1.25rem;
}

.gap-y-5 {
    row-gap: 1.25rem;
}

.gap-y-4 {
    row-gap: 1rem;
}

/* Width utilities */
.w-full {
    width: 100%;
}

/* Spacing utilities */
.pt-16 {
    padding-top: 4rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

/* Grid utilities */
.grid {
    display: grid;
}

.place-content-center {
    place-content: center;
}

/* Block utilities */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.text-center {
    text-align: center;
}

/* Footer specific styles */
.footer__title {
    color: #131319;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.footer__link {
    color: #131319;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lora', serif;
}

.footer_para {
    color: #131319;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lora', serif;
}

.footer__link:hover {
    width: fit-content;
    text-decoration: underline;
    text-decoration-color: #210077;
}

.footer__link a {
    color: inherit;
    text-decoration: none;
}

.footer__link a:hover {
    text-decoration: underline;
    text-decoration-color: #210077;
}

.footer__logo-img {
    width: 184px;
    height: 35px;
    object-fit: cover;
}

.footer__line {
    width: 30%;
    height: 1px;
    background: #131319;
}

/* Social icons */
.social__icons a {
    text-decoration: none;
}

.FaYoutube svg {
    color: #FF0000;
    font-size: 24px;
}

/* Security images */
.secureImg img {
    width: 220px;
    height: 54px;
    object-fit: cover;
}

.secureImg__container {
    border-top: 1px solid #dedbdb;
}

/* Footer certification images */
.footerImg__container__iso1 img {
    width: 84px;
    height: 54px;
    object-fit: cover;
}

.footerImg__container__iso2 img {
    width: 94px;
    height: 54px;
    object-fit: cover;
}

.footerImg__container__iso img {
    width: 54px;
    height: 54px;
    object-fit: cover;
}

.footerImg__container__iso27001 img {
    width: 94px;
    height: 64px;
    object-fit: cover;
}

.footerImg__container__start img {
    width: 205px;
    height: 54px;
    object-fit: cover;
}

.footerImg__container__digital img {
    width: 124px;
    height: 44px;
    object-fit: contain;
}

/* Copyright symbol */
.copyright-symbol {
    display: inline-block;
    font-size: 14px;
}

/* Media queries */
@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:inline-block {
        display: inline-block;
    }
    
    .md\:my-0 {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .md\:my-14 {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
    
    .md\:my-20 {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:w-40 {
        width: 10rem;
    }
    
    .lg\:w-2\/6 {
        width: 33.333333%;
    }
    
    .lg\:mt-0 {
        margin-top: 0;
    }
    
    .lg\:inline-block {
        display: inline-block;
    }
    
    .lg\:pl-7 {
        padding-left: 1.75rem;
    }
    
    .lg\:justify-start {
        justify-content: flex-start;
    }
    
    .lg\:text-left {
        text-align: left;
    }
    
    .lg\:flex-nowrap {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1280px) {
    .xl\:justify-start {
        justify-content: flex-start;
    }
}

/* Responsive footer lines */
@media only screen and (max-width:550px) {
    .footer__line {
        width: 0%;
    }
    .footerRights {
        font-size: 16px;
    }
}

@media (min-width: 550px) and (max-width: 640px) {
    .footer__line {
        width: 12%;
    }
    .footerRights {
        font-size: 12px;
    }
}

@media (min-width: 640px) and (max-width: 768px) {
    .footer__line {
        width: 12%;
    }
    .footerRights {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer__line {
        width: 14%;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .footer__line {
        width: 23%;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    .footer__line {
        width: 27%;
    }
}