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

.subpage-grid {
    display: flex;
    justify-content: right;
    width: 100%;
    margin-top: 30px;
}

.subpage-item {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 300px;
    height: 300px;
    border: 2px solid #e16f09;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transform: translateY(40px);
    display: block;
}

.circle-small {
    position: absolute;
    top: -20px;
    right: 60px;
    width: 80px;
    height: 80px;
    border: 1px dashed #80904d;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    z-index: 2;
	color: var(--color-main-menu);
	font-weight:700;
	font-size:12px;
}


.subpages h2 {
	font-size:50px;
	color: #033b80;
	margin-top:40px;
	font-family: var(--font-title);
	font-weight:500;
}

.subpages h3 {
	font-size:35px;
	color: #033b80;
	margin-top:40px;
	border:1px dashed #e16f0a;
	border-radius:15px;
	padding:5px 10px;
	line-height:30px;
	font-family: var(--font-title);
	font-weight:500;
}

.subpages h4 {
	font-size:20px;
	color: #033b80;
	margin-top:10px;
	font-family: var(--font-title);
	font-weight:500;
}


.subpages h5 {
	font-size:14px;
	color: #e16f0a;
	margin-top:10px;
	text-align:left;
}

.subpages h5::before {
    content: "✓";
    color: #e16f0a;      /* green */
    margin-right: 8px;
    font-weight: bold;
}

.subpages a:first-of-type {
	font-size:15px;
	color: #e16f0a;
	margin-top:20px;
	border:1px solid #e16f0a;
	border-radius:15px;
	text-decoration:none;
	padding: 10px 35px 10px 10px;
	line-height:15px;

    background: url("../images/download.png") no-repeat right 10px center;
    background-size: 16px 16px; /* adjust as needed */
	    width: fit-content;
}



.subpages a {
	font-size:15px;
	color: #e16f0a;
	text-decoration:none;
	padding: 5px 0px;
	line-height:15px;
	
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 360px; /* or max-width */
}


.icon {
    width: 25px;
    height: 25px;
    border: 1px solid #e16f0a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
	margin-left:30px;
}

.icon img {
    max-width: 16px;
    max-height: 16px;
    object-fit: contain;
}

.supporting {
	text-align:left;
	margin-left:80px;
	margin-top:30px;
}

.supporting h5 {
	width:550px;
}


@media (max-width: 768px) {

    .subpages {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .subpages h2 {
        font-size: 28px;
        line-height: 34px;
        margin-top: 25px;
        text-align: center;
    }

    .subpages h3 {
        font-size: 22px;
        line-height: 26px;
        margin-top: 25px;
        padding: 8px 15px;
        border-radius: 12px;
    }

    .subpages h4 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 20px;
        text-align: center;
    }

    .subpages h5 {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        text-align: left;
        margin-top: 12px;
    }

    .subpages a:first-of-type {
        font-size: 14px;
        padding: 10px 45px 10px 15px;
        margin-top: 15px;
        background-position: right 15px center;
    }

    .subpages a {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        line-height: 20px;
    }


    .icon {
        width: 25px;
        height: 25px;
        margin-left: 10px;
    }


    .supporting {
        margin-left: 0;
        margin-top: 25px;
        width: 100%;
        text-align: left;
    }

    .supporting h4 {
        text-align: center;
    }


    .subpage-grid {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }


    .circle {
        width: 220px;
        height: 220px;
    }


    .circle img {
        transform: translateY(25px);
    }


    .circle-small {
        width: 65px;
        height: 65px;
        top: -15px;
        right: 20px;
        font-size: 12px;
        padding: 8px;
		
    }

}


@media (max-width: 480px) {

    .subpages {
        padding: 0 15px;
    }

    .subpages h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .subpages h3 {
        font-size: 19px;
        line-height: 24px;
    }

    .circle {
        width: 180px;
        height: 180px;
    }

    .circle-small {
        width: 55px;
        height: 55px;
        font-size: 11px;
        right: 10px;
    }

}