.header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: start;
    margin-bottom: 20px;
    flex-direction: column;
    gap: 5px;
    text-transform: uppercase;
}
.back-button {
	display: none;
    text-decoration: none;
    color: white;
    background-color: var(--yellow);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.back-button::before {
    content: "<";
    margin-right: 5px; /* Space between the symbol and text */
}

.back-button:hover {
    background-color: #0056b3;
}


.tier-list h1.page-title {
    margin: 0;
    font-size: 3rem;
	color: var(--white);
    flex: 1; /* Ensures the title takes up available space */
}

p.page-tagline {
    text-transform: capitalize;
    font-size: 2rem;
    margin: 0;
    font-weight: 100;
}

.tierlist {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 20px;
}
.tierlist-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

button.tier-title {
    text-transform: uppercase;
}

.tier {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.tier-title {
    padding: 15px;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	width: 100%;
	border-bottom: 1px solid;
}
.tier-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}
.tier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.tier-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.tier-item.phone-item img {
    max-height: 150px;
}
.tier-item-title {
    margin-top: 10px;
    font-size: 1em;
}
.super-sulit .tier-title { border-bottom: 1px solid #ff7f7f; }
.maganda-na .tier-title {  border-bottom: 1px solid #ffbe7e;  }
.sakto-lang .tier-title { border-bottom: 1px solid #ffdf7e;}
.needs-improvement .tier-title {  border-bottom: 1px solid #fffa7f; }
.overpriced .tier-title { border-bottom: 1px solid #a2ff7f;   }


.tier-title {
    width: 100%;
    text-align: left;
    background: transparent;
    color: #fff;
    padding: 15px 0;
    font-size: 32px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tier-items {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-icon {
    font-size: 22px;
}


/* Responsive layout for screens <= 767px */
@media (max-width: 767px) {
    .tier {
        flex-direction: column;
    }
    .tier-title, .tier-items {
        width: 100%;
    }
    .tier-title {
        text-align: center;
    }
    .tier-items {
        justify-content: center;
    }
}

.page-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.page-tagline {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 4px;
}