* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    line-height: 1.5;
}

.Page-Header {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    background: #000000;
}

.Header-Logo {
    max-width: 100%;
    height: auto;
}

.main-banner {
    display: block;
    width: 100%;
    height: auto;
}

.TopInfocard {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 74px 20px;
}

.TopInfocardText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 766px;
    text-align: center;
}

.TopInfocardSubtitle {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.TopInfocardTitle {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.TopInfocardDescription {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
    max-width: 600px;
}

.PcContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.ImageTop {
    max-width: 316px;
    width: 100%;
    height: auto;
}

.Cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 80px 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.CardBox {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
    padding: 30px 20px;
    height: 288px;
    border-radius: 8px;
}

.imageCard {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.CardDescription {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.MidBanner {
    margin: 80px 0 0;
    background: rgba(224, 224, 224, 1);
    padding-bottom: 80px;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    padding: 60px 20px 0;
}

.midCard {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.midimg {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.BottomCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 80px 20px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.bottomcard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.23);
    padding: 32px 20px;
    min-height: 300px;
    border-radius: 8px;
}

.BottomImage {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.imgdescripton {
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

.bottomwarp {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.BottomInfoCard {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.BoxText {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 766px;
    text-align: center;
}

.BotdescriptionTitlte {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.Botdescription {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

.downBannerBox {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.lastBanner {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.footer {
    padding: 38px 20px;
    background: #000000;
    text-align: center;
}

.icons {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 16px;
}

.icon {
    margin: 0 8px;
}

.fotimg {
    width: 24px;
    height: 24px;
}

.footerText {
    font-weight: 400;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #BDBDBD;
    max-width: 400px;
    margin: 0 auto;
}

/* Tablet Styles */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .TopInfocardSubtitle {
        font-size: 28px;
    }
    
    .TopInfocardTitle {
        font-size: 40px;
    }
    
    .Cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 100px 40px 0;
    }
    
    .BottomCards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 100px 40px;
    }
    
    .wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 60px 40px 0;
    }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
    .MainBannerDesktop, .footerDesk {
        display: none;
    }
    
    .Page-Header {
        padding: 20px;
    }
    
    .TopInfocard {
        padding: 60px 20px;
    }
    
    .TopInfocardSubtitle {
        font-size: 20px;
    }
    
    .TopInfocardTitle {
        font-size: 28px;
    }
    
    .TopInfocardDescription {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .ImageTop {
        max-width: 240px;
    }
    
    .Cards {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 60px 20px 0;
    }
    
    .MidBanner {
        margin: 60px 0 0;
        padding-bottom: 60px;
    }
    
    .wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px 0;
    }
    
    .BottomCards {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 20px;
    }
    
    .BotdescriptionTitlte {
        font-size: 24px;
    }
    
    .Botdescription {
        font-size: 14px;
    }
    
    .bottomwarp {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .downBannerBox {
        padding: 30px 0;
    }
    
    .footerText {
        font-size: 9px;
    }
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
    .MainBannerMobile, .footermob {
        display: none;
    }
    
    .Cards {
        grid-template-columns: repeat(3, 1fr);
        padding: 120px 40px 0;
    }
    
    .BottomCards {
        grid-template-columns: repeat(4, 1fr);
        padding: 120px 40px;
    }
    
    .wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Styles */
@media screen and (min-width: 1400px) {
    .TopInfocardSubtitle {
        font-size: 40px;
    }
    
    .TopInfocardTitle {
        font-size: 60px;
    }
    
    .TopInfocardDescription {
        font-size: 18px;
    }
    
    .BotdescriptionTitlte {
        font-size: 40px;
    }
    
    .Botdescription {
        font-size: 18px;
    }
    
    .imgdescripton {
        font-size: 18px;
    }
    
    .CardDescription {
        font-size: 18px;
    }
}

/* Extra Large Screens */
@media screen and (min-width: 2000px) {
    .Header-Logo {
        width: 300px;
    }
    
    .TopInfocardSubtitle {
        font-size: 50px;
    }
    
    .TopInfocardTitle {
        font-size: 80px;
    }
    
    .TopInfocardDescription {
        font-size: 24px;
    }
    
    .ImageTop {
        max-width: 500px;
    }
    
    .CardBox {
        height: 400px;
        padding: 50px 30px;
    }
    
    .imageCard {
        width: 100px;
        height: 100px;
    }
    
    .CardDescription {
        font-size: 24px;
    }
    
    .BottomImage {
        width: 100px;
        height: 100px;
    }
    
    .bottomcard {
        min-height: 450px;
        padding: 50px 30px;
    }
    
    .BotdescriptionTitlte {
        font-size: 60px;
    }
    
    .Botdescription {
        font-size: 28px;
    }
    
    .imgdescripton {
        font-size: 24px;
    }
    
    .fotimg {
        width: 40px;
        height: 40px;
    }
    
    .footerText {
        font-size: 16px;
    }
}