

/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}

.back-asp-one {
    position: relative;
    width: 100%;
    height: auto;
    top: 70px;
    margin-bottom: 70px;
    aspect-ratio: 16 / 9;
    background-image: url(../images/banner/big-screen/asp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #042a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.back-asp-one::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
}

.back-asp-one h1 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5vw 2vw;
    z-index: 2;
    color: white;
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Laptop screens */
/* @media (max-width: 1600px) {
    .back-asp-one {
        background-image: url(../images/banner/generator2.png);
    }
} */

/* Tablet screens */
@media (max-width: 1280px) {
    .back-asp-one {
        background-image: url(../images/banner/big-screen/asp.png);
    }
}

/* Mobile screens */
@media (max-width: 720px) {
    .back-asp-one {
        background-image: url(../images/banner/big-screen/asp.png);
    }
    .back-asp-one h1 {
        font-size: 5.5vw;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .back-asp-one {
        background-image: url(../images/banner/mobile2/asp.png);
    }
    .back-asp-one h1 {
        font-size: 5.5vw;
    }
}

.flyer{
    padding: 20px;
    font-size:1.6rem;
  }

  .flyer :hover{
    color: red;
  }


/* Overlay */
.back-asp-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.288);
    z-index: 1;
}

/* Text Styling */
.back-asp-one h1,
.back-asp-one p {
    position: relative;
    z-index: 2; /* Content above overlay */
}


/*  */
.section-container {
    font-family: Arial, sans-serif;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 4px;
    /* background-color: #afe4ff; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0);  */
    transition: all 0.3s ease-in-out; 
}

.section-title {
    font-size: 3.6rem;
    color: #2b5797;
    /* margin-bottom: 10px; */
    /* border-bottom: 3px solid #2b972d; */
    padding-bottom: 5px;
    display: inline-block;   
}

.section-content {
    line-height: 1.6;
    /* color: #333;  */
}

.section-content .highlight {
    font-weight: bold;
    color: #f39c12;
}

.section-content p {
    margin-bottom: 5px;
    font-size: 1.6rem;
    text-align: justify;
}



@media (max-width: 768px) {
    .section-container {
        padding: 15px;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .section-content {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 15px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-content {
        font-size: 1.4px;
    }
}


.asp-features-section{
    margin-bottom: 10PX;
}