@import url("https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
    box-sizing: border-box;
}

.page1 {
    background: white;
    width: 100%;
    font-family: "Lato", sans-serif;
    padding-bottom: 30px;
}

.top-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0px;
    width: 100%;
    padding: 30px 15px;
}

.top-container img {
    height: 22vw;
    margin-top: 30px;
    max-width: 100%;
    object-fit: contain;
}

.top-left,
.top-right {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60%;
}

.top-center h4 {
    font-family: "Edu NSW ACT Foundation", sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-center h4 div {
    height: 1px;
    width: 30px;
    background: var(--accent-color);
    display: block;
}

.top-center h2 {
    font-family: "Lato", sans-serif;
    font-size: clamp(32px, 8vw, 65px);
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
    line-height: 1.2;
}
.top-center h2 span {
    color: var(--accent-color);
}

.top-center p {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color: rgb(50, 50, 50);
    margin-bottom: 30px;
    width: 60%;
    line-height: 1.5;
}

.top-center .tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.top-center .tag h3 {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    color: black;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-style: italic;
    font-weight: 700;
}

.top-center .tag h3 .first {
    color: var(--accent-color);
}

.top-center .tag h3 .second {
    color: green;
}

.step-container {
    width: 100%;
    padding: 0 clamp(15px, 5%, 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.step-rule {
    height: 100px;
    width: 3px;
    background: rgb(220, 220, 220);
}
.step-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-item i {
    font-size: 50px;
    background: rgb(0, 71, 212, 0.05);
    color: var(--accent-color);
    border-radius: 50%;
    padding: 10px;
    flex-shrink: 0;
}

.step-item.alternate i {
    background: rgba(0, 128, 0, 0.05);
    color: green;
}

.step-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: "Lato", sans-serif;
}

.step-item div h4 {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}
.step-item.alternate div h4 {
    color: green;
}

.step-item div p {
    font-size: 15px;
    color: rgb(50, 50, 50);
    width: 80%;
    margin-bottom: 10px;
}

.step-underline {
    height: 1px;
    width: 40px;
    background: rgb(50, 50, 50, 0.4);
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(
        45deg,
        var(--accent-color),
        #00297c,
        var(--accent-color)
    );
    width: 90%;
    max-width: 900px;
    margin: 30px auto;
    padding: clamp(20px, 5%, 30px);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-container h3 {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-action-btn {
    padding: 14px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    color: var(--accent-color);
    background: white;
    font-weight: 600;
}
.contact-action-btn i {
    font-size: 24px;
}

.contact-rule {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
}

.contact-whatsapp {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}
.contact-whatsapp i {
    font-size: 24px;
    color: rgb(0, 192, 0);
}

.contact-float-1,
.contact-float-2 {
    position: absolute;
    width: 150px;
}

.contact-float-1 {
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-float-2 {
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-container {
    width: 100%;
    padding: 0 clamp(15px, 5%, 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-rule {
    height: 30px;
    width: 0px;
    background: rgb(220, 220, 220);
    border-left: 1px solid rgb(220, 220, 220);
}

.feature-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.feature-item i {
    font-size: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.item-2 i {
    color: green;
}

.feature-item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: "Lato", sans-serif;
}

.feature-item div h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgb(30, 30, 30);
}
.feature-item div p {
    font-size: 14px;
    color: rgb(80, 80, 80);
    width: 80%;
    margin-bottom: 10px;
}

.tagline {
    font-family: "Edu NSW ACT Foundation", sans-serif;
    font-size: 15px;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Mobile Responsive Styles (up to 640px) */
@media (max-width: 640px) {
    .top-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .top-left,
    .top-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .top-container img {
        height: 40vw;
        max-height: 250px;
    }

    .top-center {
        width: 100%;
    }

    .top-center h4 {
        font-size: 14px;
        gap: 8px;
        flex-direction: column;
    }

    .top-center h4 div {
        width: 20px;
    }

    .top-center h2 {
        font-size: clamp(24px, 6vw, 40px);
        margin-bottom: 15px;
    }

    .top-center p {
        width: 90%;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .top-center .tag {
        align-items: center;
    }

    .top-center .tag h3 {
        font-size: 14px;
    }

    .step-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
    }

    .step-rule {
        height: 3px;
        width: 60px;
        background: rgb(220, 220, 220);
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .step-item i {
        font-size: 40px;
    }

    .step-item div {
        align-items: center;
    }

    .step-item div h4 {
        font-size: 16px;
    }

    .step-item div p {
        width: 100%;
        font-size: 14px;
    }

    .contact-container {
        width: 95%;
        padding: 20px 15px;
        gap: 15px;
        margin: 20px auto;
    }

    .contact-container h3 {
        font-size: 16px;
    }

    .contact-action {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .contact-action-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-rule {
        display: none;
    }

    .contact-whatsapp {
        font-size: 14px;
    }

    .contact-float-1,
    .contact-float-2 {
        display: none;
    }

    .feature-container {
        flex-direction: column;
        padding: 0 15px;
        gap: 15px;
        margin-bottom: 30px;
    }

    .feature-rule {
        height: 0px;
        width: 60px;
        border-bottom: 1px solid rgb(220, 220, 220);
        border-left: none;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .feature-item i {
        font-size: 35px;
    }

    .feature-item div {
        align-items: center;
    }

    .feature-item div h3 {
        font-size: 14px;
    }

    .feature-item div p {
        width: 100%;
        font-size: 12px;
    }
}

/* Tablet Responsive Styles (641px to 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
    .top-container {
        flex-direction: column;
        align-items: center;
        padding: 25px 20px;
    }

    .top-left,
    .top-right {
        width: 100%;
        margin-bottom: 15px;
    }

    .top-center {
        width: 100%;
    }

    .top-container img {
        height: 35vw;
        max-height: 300px;
    }

    .top-center h2 {
        font-size: clamp(32px, 7vw, 50px);
    }

    .top-center p {
        width: 85%;
        font-size: 15px;
    }

    .step-container {
        flex-direction: column;
        padding: 0 30px;
        gap: 20px;
    }

    .step-rule {
        height: 3px;
        width: 60px;
    }

    .step-item {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .step-item div {
        align-items: center;
    }

    .step-item div p {
        width: 90%;
    }

    .contact-container {
        width: 92%;
        padding: 25px 20px;
    }

    .contact-action {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-float-1,
    .contact-float-2 {
        width: 100px;
    }

    .feature-container {
        flex-direction: column;
        padding: 0 30px;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-rule {
        height: 3px;
        width: 60px;
        border: none;
        border-bottom: 1px solid rgb(220, 220, 220);
    }

    .feature-item {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .feature-item div {
        align-items: center;
    }

    .feature-item div p {
        width: 90%;
    }
}

/* Desktop Responsive Styles (1025px and above) */
@media (min-width: 1025px) {
    .step-item div {
        display: flex;
    }

    .feature-item div {
        display: flex;
    }
}
