/* Help Pages Shared Styles */
.content-hero {
    background: linear-gradient(135deg, #F71F00 0%, #FF8D00 80%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.content-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, #FF8D00 20%, #F71F00 80%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.key-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.key-point-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.key-point h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.key-point p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Special styles for specific help pages */
.example-score {
    /*background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);*/
    background: linear-gradient(135deg, #FF8D00 40%, #F71F00 60%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.example-score h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.example-score p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.chart-section {
    text-align: center;
    margin: 3rem 0;
}

.chart-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 1rem 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .content-hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .content-hero h1 {
        font-size: 2rem;
    }

    .content-container {
        padding: 0 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .content-text {
        font-size: 1.1rem;
        text-align: left;
    }

    .key-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .key-point {
        padding: 1.5rem;
    }

    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .highlight-box h3 {
        font-size: 1.3rem;
    }

    .example-score {
        padding: 1.5rem;
    }

    .example-score h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .content-hero h1 {
        font-size: 1.8rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .key-point {
        padding: 1rem;
    }

    .key-point h4 {
        font-size: 1.2rem;
    }

    .highlight-box {
        padding: 1rem;
    }

    .example-score {
        padding: 1rem;
    }

    .example-score h3 {
        font-size: 1.8rem;
    }
}