/* Partial Support (Fade Help) Page Styles */

.partial-support-page {
    min-height: calc(100vh - 70px);
    padding: 55px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-image: url('cpr.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.partial-support-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.3);
    z-index: 0;
}

.content-container {
    background: rgba(153, 240, 199, 0.77);
    border-radius: 50px;
    padding: 50px 70px;
    max-width: 1329px;
    width: 100%;
    min-height: 787px;
    position: relative;
    z-index: 1;
}

/* Section Titles */
.section-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 24px;
    color: #494545;
    text-align: start;
    margin-bottom: 20px;
    letter-spacing: -0.264px;
}

/* Support Tags */
.tag-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.support-tag {
    background: #d9d9d9;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Autour One', sans-serif;
    font-size: 16px;
    color: #494545;
    text-align: center;
    letter-spacing: -0.176px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-tag.small {
    min-width: 88px;
}

.support-tag.wide {
    min-width: 288px;
}

/* Remember Section */
.remember-section {
    margin-bottom: 40px;
}

.remember-list {
    list-style: disc;
    padding-left: 20px;
    font-family: 'Autour One', sans-serif;
    font-size: 16px;
    color: #494545;
    line-height: 1.8;
    letter-spacing: -0.176px;
}

.remember-list li {
    margin-bottom: 8px;
}

/* Objective Section */
.objective-section {
    margin-bottom: 40px;
}

.objective-text {
    font-family: 'Autour One', sans-serif;
    font-size: 16px;
    color: #494545;
    line-height: 1.6;
    text-align: justify;
    letter-spacing: -0.176px;
    max-width: 1074px;
}

/* Anchors Section */
.anchors-section {
    margin-bottom: 50px;
}

.anchor-tag {
    background: #d9d9d9;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Autour One', sans-serif;
    font-size: 16px;
    color: #494545;
    text-align: center;
    letter-spacing: -0.176px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
}

/* Assessment Button */
.assessment-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
}

.assessment-btn {
    background: #81e5ff;
    border-radius: 10px;
    width: 222px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Autour One', sans-serif;
    font-size: 20px;
    color: #494545;
    text-decoration: none;
    letter-spacing: -0.22px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.assessment-btn:hover {
    background: #6dd4ee;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.assessment-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partial-support-page {
        padding: 30px;
    }

    .content-container {
        padding: 40px 50px;
        min-height: auto;
    }

    .section-title {
        font-size: 22px;
    }

    .support-tag,
    .anchor-tag {
        font-size: 14px;
        padding: 8px 16px;
    }

    .objective-text,
    .remember-list {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .partial-support-page {
        padding: 20px;
    }

    .content-container {
        border-radius: 30px;
        padding: 30px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .tag-group {
        gap: 12px;
        margin-bottom: 30px;
    }

    .support-tag,
    .anchor-tag {
        font-size: 13px;
        padding: 8px 14px;
        height: 36px;
    }

    .remember-list,
    .objective-text {
        font-size: 13px;
    }

    .assessment-btn {
        width: 200px;
        height: 55px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .partial-support-page {
        padding: 15px;
    }

    .content-container {
        border-radius: 20px;
        padding: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .tag-group {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .support-tag,
    .anchor-tag,
    .support-tag.small,
    .support-tag.wide {
        min-width: 100%;
        font-size: 12px;
    }

    .remember-list,
    .objective-text {
        font-size: 12px;
    }

    .assessment-btn {
        width: 180px;
        height: 50px;
        font-size: 16px;
    }
}
